示例#1
0
 public void AddGeometricRepresentation(BbElement hostElement, BbSurfaceGeometry surfaceGeometry,
     BbLocalPlacement3D localPlacement3D)
 {
     BbSurfaceGeometry = surfaceGeometry;
     BbLocalPlacement3D = localPlacement3D;
 }
示例#2
0
 public void AddGeometricRepresentation(BbElement hostElement, BbSurfaceGeometry surfaceGeometry,
     BbPosition3D position3D)
 {
     var ploc = BbLocalPlacement3D.Create(
         hostElement.ObjectBbLocalPlacement,
         BbPosition3D.Create(
             BbCoordinate3D.Create(0, 254, 100),
             BbHeaderSetting.Setting3D.YAxis,
             BbHeaderSetting.Setting3D.XAxisMinus)
         );
     AddGeometricRepresentation(hostElement, surfaceGeometry, ploc);
 }