SetClassParent

Defines (set/unset) the parent class of a given class. Multiple-inheritance is supported and behavior of parent classes is also inherited as well as cardinality restrictions on datatype properties and object properties (relations). When set: it adds parentOwlClass as immediate parent of owlClass if and only if parentOwlClass is not ancestor of owlClass and owlClass is not ancestor of parentOwlClass. Returns the same value as IsClassAncestor after the call. When unset: it removes parentOwlClass from immediate parents and returns 1, or returns 0 if parentOwlClass is not immediate parent

Syntax

public const string enginedll = @"engine.dll";

[DllImport(enginedll, EntryPoint = "SetClassParent")]
public static extern Int64 SetClassParent(Int64 owlClass, Int64 parentOwlClass, Int64 setting);    

Property owlClass

Size: 64 bit / 8 byte (value)
This attribute represents a handle to the class. The term owl is comming from W3C, the classes follow the expression power of Semantic Web concepts, therefore classes support multiple inheritance. Technically classes can also be distributed over different resources, however for this the parametric library is required as an extension on the basic Geometry Kernel API.

Property parentOwlClass

Size: 64 bit / 8 byte (value)
This attribute represents a handle to the parent class.

Property setting

Size: 64 bit / 8 byte (value)
The setting is the data that is defined for bitwise operations, only bits set in the mask will be relevant.

Example (based on pure API calls)

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

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

static void Main(string[] args)
{
    Int64 model = RDF.engine.CreateModel();

    if (model != 0)
    {
        //
        //  The following class will be created on-the-fly if the name is not used already
        //  for a class or property (attribute / relation).
        //
        //  note: calling GetClassByName with a name not yet existing will do the same trick)
        //
        Int64   classMyOwnCylinderClass = RDF.engine.CreateClass(model, "MyOwnCylinderClass");

        //
        //  Specific for C#, note that the following call is also allowed,
        //  they should give the same result as we expect to use only ASCII characters in the context of this call
        //
        Int64   classMyOwnSecondClass = RDF.engine.CreateClass(model, System.Text.Encoding.ASCII.GetBytes("MyOwnSecondClass"));
    

        //
        //  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
        //
        Int64   instanceMyOwnCylinderClass = RDF.engine.CreateInstance(classMyOwnCylinderClass, (string) null);

        //
        //  At this moment our new class is unrelated to other classes and instances of it not generating any geometry
        //
        System.Diagnostics.Debug.Assert(RDF.engine.GetGeometryClass(classMyOwnCylinderClass) == 0);

        RDF.engine.SetClassParent(classMyOwnCylinderClass, classCylinder, 1);

        //
        //  Now each instance of MyOwnCylinderClass is inheriting the behavior and knowledge of a Cylinder
        //
        System.Diagnostics.Debug.Assert(RDF.engine.GetGeometryClass(classMyOwnCylinderClass) == classCylinder);

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

        double  volume = RDF.engine.GetVolume(instanceMyOwnCylinderClass, (IntPtr) 0, (IntPtr) 0);

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