Ejemplo n.º 1
0
 public IXbimFace CreateFace(IfcCompositeCurve cCurve)
 {
     return _engine.CreateFace(cCurve);
 }
Ejemplo n.º 2
0
 public override void IfcParse(int propIndex, IPropertyValue value)
 {
     switch (propIndex)
     {
         case 0:
             _spineCurve = (IfcCompositeCurve) value.EntityVal;
             break;
         case 1:
             _crossSections.Add((IfcProfileDef)value.EntityVal);
             break;
         case 2:
             _crossSectionPositions.Add((IfcAxis2Placement3D)value.EntityVal);
             break;
         default:
             this.HandleUnexpectedAttribute(propIndex, value); break;
     }
 }