예제 #1
0
파일: Edge.cs 프로젝트: jmerlan/Elements
        internal Edge(AdaptiveGrid adaptiveGrid, ulong id, ulong vertexId1, ulong vertexId2)
        {
            AdaptiveGrid = adaptiveGrid;
            Id           = id;

            this.SetVerticesFromIds(vertexId1, vertexId2);
        }
예제 #2
0
파일: Vertex.cs 프로젝트: jmerlan/Elements
 internal Vertex(AdaptiveGrid adaptiveGrid, ulong id, Vector3 point)
 {
     Id           = id;
     AdaptiveGrid = adaptiveGrid;
     Point        = point;
 }