BEPUphysics.NarrowPhaseSystems.Factories.Factories C# (CSharp) Method

Factories() public method

Constructs all factories.
public Factories ( ) : System.Collections.Generic
return System.Collections.Generic
        public Factories()
        {
            factories.Add(BoxBox = new NarrowPhasePairFactory<BoxPairHandler>());
            factories.Add(BoxSphere = new NarrowPhasePairFactory<BoxSpherePairHandler>());
            factories.Add(SphereSphere = new NarrowPhasePairFactory<SpherePairHandler>());
            factories.Add(ConvexConvex = new NarrowPhasePairFactory<GeneralConvexPairHandler>());
            factories.Add(TriangleConvex = new NarrowPhasePairFactory<TriangleConvexPairHandler>());
            factories.Add(CompoundConvex = new NarrowPhasePairFactory<CompoundConvexPairHandler>());
            factories.Add(CompoundCompound = new NarrowPhasePairFactory<CompoundPairHandler>());
            factories.Add(CompoundStaticMesh = new NarrowPhasePairFactory<CompoundStaticMeshPairHandler>());
            factories.Add(CompoundTerrain = new NarrowPhasePairFactory<CompoundTerrainPairHandler>());
            factories.Add(CompoundInstancedMesh = new NarrowPhasePairFactory<CompoundInstancedMeshPairHandler>());
            factories.Add(CompoundMobileMesh = new NarrowPhasePairFactory<CompoundMobileMeshPairHandler>());
            factories.Add(StaticMeshConvex = new NarrowPhasePairFactory<StaticMeshConvexPairHandler>());
            factories.Add(StaticMeshSphere = new NarrowPhasePairFactory<StaticMeshSpherePairHandler>());
            factories.Add(TerrainConvex = new NarrowPhasePairFactory<TerrainConvexPairHandler>());
            factories.Add(TerrainSphere = new NarrowPhasePairFactory<TerrainSpherePairHandler>());
            factories.Add(InstancedMeshConvex = new NarrowPhasePairFactory<InstancedMeshConvexPairHandler>());
            factories.Add(InstancedMeshSphere = new NarrowPhasePairFactory<InstancedMeshSpherePairHandler>());
            factories.Add(MobileMeshConvex = new NarrowPhasePairFactory<MobileMeshConvexPairHandler>());
            factories.Add(MobileMeshSphere = new NarrowPhasePairFactory<MobileMeshSpherePairHandler>());
            factories.Add(MobileMeshTriangle = new NarrowPhasePairFactory<MobileMeshTrianglePairHandler>());
            factories.Add(MobileMeshStaticMesh = new NarrowPhasePairFactory<MobileMeshStaticMeshPairHandler>());
            factories.Add(MobileMeshInstancedMesh = new NarrowPhasePairFactory<MobileMeshInstancedMeshPairHandler>());
            factories.Add(MobileMeshTerrain = new NarrowPhasePairFactory<MobileMeshTerrainPairHandler>());
            factories.Add(MobileMeshMobileMesh = new NarrowPhasePairFactory<MobileMeshMobileMeshPairHandler>());
            factories.Add(StaticGroupConvex = new NarrowPhasePairFactory<StaticGroupConvexPairHandler>());
            factories.Add(StaticGroupCompound = new NarrowPhasePairFactory<StaticGroupCompoundPairHandler>());
            factories.Add(StaticGroupMobileMesh = new NarrowPhasePairFactory<StaticGroupMobileMeshPairHandler>());
            factories.Add(DetectorVolumeConvex = new NarrowPhasePairFactory<DetectorVolumeConvexPairHandler>());
            factories.Add(DetectorVolumeMobileMesh = new NarrowPhasePairFactory<DetectorVolumeMobileMeshPairHandler>());
            factories.Add(DetectorVolumeCompound = new NarrowPhasePairFactory<DetectorVolumeCompoundPairHandler>());
        }
Factories