コード例 #1
0
ファイル: IfcEdgeCurve.cs プロジェクト: sta1216/IfcDoc
 public IfcEdgeCurve(IfcVertex __EdgeStart, IfcVertex __EdgeEnd, IfcCurve __EdgeGeometry, IfcBoolean __SameSense)
     : base(__EdgeStart, __EdgeEnd)
 {
     this._EdgeGeometry = __EdgeGeometry;
     this._SameSense    = __SameSense;
 }
コード例 #2
0
ファイル: IfcSubedge.cs プロジェクト: vdubya/IfcDoc
 public IfcSubedge(IfcVertex __EdgeStart, IfcVertex __EdgeEnd, IfcEdge __ParentEdge)
     : base(__EdgeStart, __EdgeEnd)
 {
     this.ParentEdge = __ParentEdge;
 }
コード例 #3
0
 public IfcEdge(IfcVertex __EdgeStart, IfcVertex __EdgeEnd)
 {
     this._EdgeStart = __EdgeStart;
     this._EdgeEnd   = __EdgeEnd;
 }
コード例 #4
0
 public IfcOrientedEdge(IfcVertex __EdgeStart, IfcVertex __EdgeEnd, IfcEdge __EdgeElement, Boolean __Orientation)
     : base(__EdgeStart, __EdgeEnd)
 {
     this._EdgeElement = __EdgeElement;
     this._Orientation = __Orientation;
 }
コード例 #5
0
 public IfcVertexLoop(IfcVertex __LoopVertex)
 {
     this._LoopVertex = __LoopVertex;
 }