示例#1
0
 public Command()
 {
     _faceCount = 0;
     _triangleCount = 0;
     _vertices = new VertexLookupInt();
     _triangles = new List<int>();
 }
示例#2
0
        public ObjExporter()
        {
            _faceCount     = 0;
            _triangleCount = 0;
            _vertices      = new VertexLookupInt();
            _triangles     = new List <int>();

            if (_add_color)
            {
                _color_transparency_lookup = new ColorTransparencyLookup();
            }
        }