: ModelHighAPI_Interface(theFeature)
{
if(initialize()) {
- setBoolType(theBoolType);
- setMainObjects(theMainObjects);
- setToolObjects(theToolObjects);
+ fillAttribute(theBoolType, myboolType);
+ fillAttribute(theMainObjects, mymainObjects);
+ fillAttribute(theToolObjects, mytoolObjects);
+
+ execute();
}
}
: ModelHighAPI_Interface(theFeature)
{
if(initialize()) {
- setBase(theBaseObjects);
- setSize(theSize);
+ fillAttribute(theBaseObjects, mybaseObjects);
+ setSizes(theSize, ModelHighAPI_Double());
}
}
: ModelHighAPI_Interface(theFeature)
{
if(initialize()) {
- setBase(theBaseObjects);
- setDirection(theDirection);
- setSize(theSize);
+ fillAttribute(theBaseObjects, mybaseObjects);
+ fillAttribute(theDirection, mydirection);
+ setSizes(theSize, ModelHighAPI_Double());
}
}
: ModelHighAPI_Interface(theFeature)
{
if(initialize()) {
- setBase(theBaseObjects);
+ fillAttribute(theBaseObjects, mybaseObjects);
setSizes(theToSize, theFromSize);
}
}
: ModelHighAPI_Interface(theFeature)
{
if(initialize()) {
- setBase(theBaseObjects);
- setDirection(theDirection);
+ fillAttribute(theBaseObjects, mybaseObjects);
+ fillAttribute(theDirection, mydirection);
setSizes(theToSize, theFromSize);
}
}
: ModelHighAPI_Interface(theFeature)
{
if(initialize()) {
- setBase(theBaseObjects);
+ fillAttribute(theBaseObjects, mybaseObjects);
setPlanesAndOffsets(theToObject, theToOffset, theFromObject, theFromOffset);
}
}
: ModelHighAPI_Interface(theFeature)
{
if(initialize()) {
- setBase(theBaseObjects);
- setDirection(theDirection);
+ fillAttribute(theBaseObjects, mybaseObjects);
+ fillAttribute(theDirection, mydirection);
setPlanesAndOffsets(theToObject, theToOffset, theFromObject, theFromOffset);
}
}