コード例 #1
0
ファイル: IfcOrientedEdge.g.cs プロジェクト: vdubya/IFC-gen
 public IfcOrientedEdge(IfcVertex edgeStart, IfcVertex edgeEnd, IfcEdge edgeElement, IfcBoolean orientation) : base(edgeStart, edgeEnd)
 {
     EdgeElement = edgeElement;
     Orientation = orientation;
 }
コード例 #2
0
ファイル: IfcSubedge.g.cs プロジェクト: vdubya/IFC-gen
 public IfcSubedge(IfcVertex edgeStart, IfcVertex edgeEnd, IfcEdge parentEdge) : base(edgeStart, edgeEnd)
 {
     ParentEdge = parentEdge;
 }