Exemplo n.º 1
0
 public IfcOrientedEdge(IfcVertex edgeStart, IfcVertex edgeEnd, IfcEdge edgeElement, IfcBoolean orientation) : base(edgeStart, edgeEnd)
 {
     EdgeElement = edgeElement;
     Orientation = orientation;
 }
Exemplo n.º 2
0
 public IfcVertexLoop(IfcVertex loopVertex) : base()
 {
     LoopVertex = loopVertex;
 }
Exemplo n.º 3
0
 public IfcEdgeCurve(IfcVertex edgeStart, IfcVertex edgeEnd, IfcCurve edgeGeometry, IfcBoolean sameSense) : base(edgeStart, edgeEnd)
 {
     EdgeGeometry = edgeGeometry;
     SameSense    = sameSense;
 }
Exemplo n.º 4
0
 public IfcSubedge(IfcVertex edgeStart, IfcVertex edgeEnd, IfcEdge parentEdge) : base(edgeStart, edgeEnd)
 {
     ParentEdge = parentEdge;
 }
Exemplo n.º 5
0
 public IfcEdge(IfcVertex edgeStart, IfcVertex edgeEnd) : base()
 {
     EdgeStart = edgeStart;
     EdgeEnd   = edgeEnd;
 }