public DxfMeshLoader(IVertexFactory vertexFactory, IFaceFactory faceFactory) { if (vertexFactory == null) throw new ArgumentNullException("vertexFactory"); if (faceFactory == null) throw new ArgumentNullException("faceFactory"); _vertexFactory = vertexFactory; _faceFactory = faceFactory; }
public DxfMeshLoader(IVertexFactory vertexFactory, IFaceFactory faceFactory) { if (vertexFactory == null) { throw new ArgumentNullException("vertexFactory"); } if (faceFactory == null) { throw new ArgumentNullException("faceFactory"); } _vertexFactory = vertexFactory; _faceFactory = faceFactory; }
public ObjMeshLoader(IVertexFactory vertexFactory, IFaceFactory faceFactory) { _vertexFactory = vertexFactory; _faceFactory = faceFactory; }
public MeshLoaderFactory(IVertexFactory vertexFactory, IFaceFactory faceFactory) { _vertexFactory = vertexFactory; _faceFactory = faceFactory; }