Mechanical Modeler Package

Some types and attributes were changed. Please find below a conversion table listing the old types, their attributes, their new names (if any) as well as their attributes:

BodyFeature GeometryFeature
MechanicalFeature OpenBodyFeature
OpenBodyFeature
 

BodyFeature  

Definition:

A body is the combination of several features within a part. For more information, see the Part Design User's Guide.

   
BodyDoc isa CATPart
  {
   BodyPart isa Part
     {
      
Body isa BodyFeature
         {
           // Create a sphere
           Sphere1 isa Sphere
             {
               Radius = 15.0 mm;
             }
           // Create a torus
           Torus1 isa Torus
             {
               InnerRadius = 20.0 mm ;
               SectionRadius = 10.0 mm ;
             }
         }
      }
  }