Cylinder

This class represents the concept Cylinder.

Class

class GeometricItem
   relation material
      range Material, cardinality [0, 1]
class Solid
class Cylinder
   property length
      range double (64 bit), cardinality [1, 1]
   property radius
      range double (64 bit), cardinality [1, 1]
   property segmentationParts
      range integer (64 bit), cardinality [0, 1]    

Example (based on pure API calls)

Here you can find code snippits that show how the API call Cylinder can be used.

using RDF;      //  include at least engine.cs within your solution

public void CreateCylinder()
{
    Int64 model = RDF.engine.CreateModel();

    if (model != 0)
    {
        //
        //  Classes
        //
        Int64   classCylinder = RDF.engine.GetClassByName(model, "Cylinder");

        //
        //  Datatype Properties (attributes)
        //
        Int64   propertyLength = RDF.engine.GetPropertyByName(model, "length"),
                propertyRadius = RDF.engine.GetPropertyByName(model, "radius"),
                propertySegmentationParts = RDF.engine.GetPropertyByName(model, "segmentationParts");

        //
        //  Instances (creating)
        //
        Int64   myInstanceCylinder = RDF.engine.CreateInstance(classCylinder, (string) null);

        double  length = 1.8,
                radius = 1.3;
        Int64   segmentationParts = 36;
        
        RDF.engine.SetDatatypeProperty(myInstanceCylinder, propertyLength, ref length, 1);
        RDF.engine.SetDatatypeProperty(myInstanceCylinder, propertyRadius, ref radius, 1);
        RDF.engine.SetDatatypeProperty(myInstanceCylinder, propertySegmentationParts, ref segmentationParts, 1);

        //
        //  The resulting model can be viewed in 3D-Editor.exe
        //
        RDF.engine.SaveModel(model, "c:\\created\\myCylinder.bin");
        RDF.engine.CloseModel(model);
    }
}