コード例 #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;
 }