Exemple #1
0
        //--------------------------------------------------------------------------------------------------

        public void SetDefaultWorkingPlane(AIS_TypeOfPlane type)
        {
            switch (type)
            {
            case AIS_TypeOfPlane.AIS_TOPL_XYPlane:
                WorkingPlane = Pln.XOY;
                break;

            case AIS_TypeOfPlane.AIS_TOPL_YZPlane:
                WorkingPlane = Pln.YOZ;
                break;

            case AIS_TypeOfPlane.AIS_TOPL_XZPlane:
                WorkingPlane = Pln.ZOX;
                break;
            }
        }
Exemple #2
0
 public AIS_Plane(Geom_Axis2Placement aComponent, AIS_TypeOfPlane aPlaneType)
     : base()
 {
     throw new NotImplementedException();
 }
Exemple #3
0
 public void SetAxis2Placement(Geom_Axis2Placement aComponent, AIS_TypeOfPlane aPlaneType)
 {
     throw new NotImplementedException();
 }