#include <MRCMesh/MRAffineXf.h>#include <MRCMesh/MRBox.h>#include <MRCMesh/MREnums.h>#include <MRCMesh/MRMatrix3.h>#include <MRCMesh/MRVector3.h>#include <MRCMesh/MRViewportId.h>#include <MRCMisc/common.h>#include <MRCMisc/exports.h>#include <stdbool.h>#include <stddef.h>Go to the source code of this file.
| typedef struct MR_AnyVisualizeMaskEnum MR_AnyVisualizeMaskEnum |
| typedef struct MR_Color MR_Color |
| typedef struct MR_ConeObject MR_ConeObject |
Object to show Cone feature, position and radius are controlled by xf Generated from class MR::ConeObject. Base classes: Direct: (non-virtual) MR::AddVisualProperties<MR::FeatureObject, MR::DimensionsVisualizePropertyType::diameter, MR::DimensionsVisualizePropertyType::angle, MR::DimensionsVisualizePropertyType::length> Indirect: (non-virtual) MR::ObjectChildrenHolder MR::Object MR::VisualObject MR::FeatureObject Supported MR_PassBy modes: MR_PassBy_DefaultConstruct, MR_PassBy_Move (and MR_PassBy_DefaultArgument and MR_PassBy_NoObject if supported by the callee).
| typedef struct MR_FeatureObject MR_FeatureObject |
| typedef struct MR_ModelBaseRenderParams MR_ModelBaseRenderParams |
| typedef struct MR_ModelRenderParams MR_ModelRenderParams |
| typedef struct MR_ObjectChildrenHolder MR_ObjectChildrenHolder |
| typedef struct MR_std_optional_MR_Vector3f MR_std_optional_MR_Vector3f |
| typedef struct MR_std_set_std_string MR_std_set_std_string |
| typedef struct MR_std_shared_ptr_MR_Object MR_std_shared_ptr_MR_Object |
| typedef struct MR_std_string MR_std_string |
| typedef struct MR_std_vector_MR_FeatureObjectSharedProperty MR_std_vector_MR_FeatureObjectSharedProperty |
| typedef struct MR_std_vector_MR_Vector3f MR_std_vector_MR_Vector3f |
| typedef struct MR_std_vector_MR_ViewportMask MR_std_vector_MR_ViewportMask |
| typedef struct MR_std_vector_std_string MR_std_vector_std_string |
| typedef struct MR_UiRenderParams MR_UiRenderParams |
| typedef struct MR_ViewportMask MR_ViewportMask |
| typedef struct MR_ViewportProperty_MR_Color MR_ViewportProperty_MR_Color |
| typedef struct MR_VisualObject MR_VisualObject |
| MRC_API bool MR_ConeObject_addChild | ( | MR_ConeObject * | _this, |
| MR_PassBy | child_pass_by, | ||
| MR_std_shared_ptr_MR_Object * | child, | ||
| const bool * | recognizedChild ) |
adds given object at the end of children (recognized or not); returns false if it was already child of this, of if given pointer is empty; child object will always report this as parent after the call;
| recognizedChild | if set to false then child object will be excluded from children() and it will be stored by weak_ptr Generated from method MR::ConeObject::addChild. Parameter _this can not be null. It is a single object. Parameter recognizedChild has a default argument: true, pass a null pointer to use it. |
| MRC_API bool MR_ConeObject_addChildBefore | ( | MR_ConeObject * | _this, |
| MR_PassBy | newChild_pass_by, | ||
| MR_std_shared_ptr_MR_Object * | newChild, | ||
| const MR_std_shared_ptr_MR_Object * | existingChild ) |
adds given object in the recognized children before existingChild; if newChild was already among this children then moves it just before existingChild keeping the order of other children intact; returns false if newChild is nullptr, or existingChild is not a child of this Generated from method MR::ConeObject::addChildBefore. Parameter _this can not be null. It is a single object. Parameter existingChild can not be null. It is a single object.
| MRC_API bool MR_ConeObject_addTag | ( | MR_ConeObject * | _this, |
| const char * | tag, | ||
| const char * | tag_end ) |
adds tag to the object's tag storage additionally calls ObjectTagManager::tagAddedSignal NOTE: tags starting with a dot are considered as service ones and might be hidden from UI Generated from method MR::ConeObject::addTag. Parameter _this can not be null. It is a single object. Parameter tag can not be null. If tag_end is null, then tag is assumed to be null-terminated.
| MRC_API void MR_ConeObject_applyScale | ( | MR_ConeObject * | _this, |
| float | scaleFactor ) |
scale object size (all point positions) Generated from method MR::ConeObject::applyScale. Parameter _this can not be null. It is a single object.
| MRC_API MR_ConeObject * MR_ConeObject_AssignFromAnother | ( | MR_ConeObject * | _this, |
| MR_PassBy | _other_pass_by, | ||
| MR_ConeObject * | _other ) |
Generated from method MR::ConeObject::operator=. Parameter _this can not be null. It is a single object. The returned pointer will never be null. It is non-owning, do NOT destroy it.
| MRC_API MR_std_string * MR_ConeObject_className | ( | const MR_ConeObject * | _this | ) |
Generated from method MR::ConeObject::className. Parameter _this can not be null. It is a single object. Never returns null. Returns an instance allocated on the heap! Must call MR_std_string_Destroy() to free it when you're done using it.
| MRC_API MR_std_string * MR_ConeObject_classNameInPlural | ( | const MR_ConeObject * | _this | ) |
Generated from method MR::ConeObject::classNameInPlural. Parameter _this can not be null. It is a single object. Never returns null. Returns an instance allocated on the heap! Must call MR_std_string_Destroy() to free it when you're done using it.
| MRC_API MR_std_shared_ptr_MR_Object * MR_ConeObject_clone | ( | const MR_ConeObject * | _this | ) |
Generated from method MR::ConeObject::clone. Parameter _this can not be null. It is a single object. Never returns null. Returns an instance allocated on the heap! Must call MR_std_shared_ptr_MR_Object_Destroy() to free it when you're done using it.
| MRC_API MR_std_shared_ptr_MR_Object * MR_ConeObject_cloneTree | ( | const MR_ConeObject * | _this | ) |
clones all tree of this object (except ancillary and unrecognized children) Generated from method MR::ConeObject::cloneTree. Parameter _this can not be null. It is a single object. Never returns null. Returns an instance allocated on the heap! Must call MR_std_shared_ptr_MR_Object_Destroy() to free it when you're done using it.
| MRC_API MR_ConeObject * MR_ConeObject_Construct | ( | const MR_std_vector_MR_Vector3f * | pointsToApprox | ) |
Finds best Cone to approx given points Generated from constructor MR::ConeObject::ConeObject. Parameter pointsToApprox can not be null. It is a single object. Never returns null. Returns an instance allocated on the heap! Must call MR_ConeObject_Destroy() to free it when you're done using it.
| MRC_API MR_ConeObject * MR_ConeObject_ConstructFromAnother | ( | MR_PassBy | _other_pass_by, |
| MR_ConeObject * | _other ) |
Generated from constructor MR::ConeObject::ConeObject. Never returns null. Returns an instance allocated on the heap! Must call MR_ConeObject_Destroy() to free it when you're done using it.
| MRC_API void MR_ConeObject_copyAllSolidColors | ( | MR_ConeObject * | _this, |
| const MR_VisualObject * | other ) |
set all object solid colors (front/back/etc.) from other object for all viewports Generated from method MR::ConeObject::copyAllSolidColors. Parameter _this can not be null. It is a single object. Parameter other can not be null. It is a single object.
| MRC_API MR_ConeObject * MR_ConeObject_DefaultConstruct | ( | void | ) |
Constructs an empty (default-constructed) instance. Never returns null. Returns an instance allocated on the heap! Must call MR_ConeObject_Destroy() to free it when you're done using it.
| MRC_API MR_ConeObject * MR_ConeObject_DefaultConstructArray | ( | size_t | num_elems | ) |
Constructs an array of empty (default-constructed) instances, of the specified size. Will never return null. The array must be destroyed using MR_ConeObject_DestroyArray(). Use MR_ConeObject_OffsetMutablePtr() and MR_ConeObject_OffsetPtr() to access the array elements.
| MRC_API void MR_ConeObject_Destroy | ( | const MR_ConeObject * | _this | ) |
Destroys a heap-allocated instance of MR_ConeObject. Does nothing if the pointer is null.
| MRC_API void MR_ConeObject_DestroyArray | ( | const MR_ConeObject * | _this | ) |
Destroys a heap-allocated array of MR_ConeObject. Does nothing if the pointer is null.
| MRC_API bool MR_ConeObject_detachFromParent | ( | MR_ConeObject * | _this | ) |
removes this from its parent children list returns false if it was already orphan Generated from method MR::ConeObject::detachFromParent. Parameter _this can not be null. It is a single object.
| MRC_API const MR_std_vector_MR_FeatureObjectSharedProperty * MR_ConeObject_getAllSharedProperties | ( | const MR_ConeObject * | _this | ) |
Generated from method MR::ConeObject::getAllSharedProperties. Parameter _this can not be null. It is a single object. The returned pointer will never be null. It is non-owning, do NOT destroy it.
| MRC_API MR_std_vector_MR_ViewportMask * MR_ConeObject_getAllVisualizeProperties | ( | const MR_ConeObject * | _this | ) |
Generated from method MR::ConeObject::getAllVisualizeProperties. Parameter _this can not be null. It is a single object. Never returns null. Returns an instance allocated on the heap! Must call MR_std_vector_MR_ViewportMask_Destroy() to free it when you're done using it.
| MRC_API float MR_ConeObject_getAmbientStrength | ( | const MR_ConeObject * | _this | ) |
returns intensity of non-directional light Generated from method MR::ConeObject::getAmbientStrength. Parameter _this can not be null. It is a single object.
| MRC_API float MR_ConeObject_getAngle | ( | const MR_ConeObject * | _this, |
| const MR_ViewportId * | id ) |
calculates cone angle from xf. It is an angle betweeh main axis and side. Generated from method MR::ConeObject::getAngle. Parameter _this can not be null. It is a single object. Parameter id has a default argument: {}, pass a null pointer to use it.
| MRC_API const MR_Color * MR_ConeObject_getBackColor | ( | const MR_ConeObject * | _this, |
| const MR_ViewportId * | viewportId ) |
returns backward color of object in given viewport Generated from method MR::ConeObject::getBackColor. Parameter _this can not be null. It is a single object. Parameter viewportId has a default argument: {}, pass a null pointer to use it. The returned pointer will never be null. It is non-owning, do NOT destroy it.
| MRC_API const MR_ViewportProperty_MR_Color * MR_ConeObject_getBackColorsForAllViewports | ( | const MR_ConeObject * | _this | ) |
returns backward color of object in all viewports Generated from method MR::ConeObject::getBackColorsForAllViewports. Parameter _this can not be null. It is a single object. The returned pointer will never be null. It is non-owning, do NOT destroy it.
| MRC_API MR_Vector3f MR_ConeObject_getBasePoint | ( | const MR_ConeObject * | _this, |
| const MR_ViewportId * | id ) |
Generated from method MR::ConeObject::getBasePoint. Parameter _this can not be null. It is a single object. Parameter id has a default argument: {}, pass a null pointer to use it.
| MRC_API float MR_ConeObject_getBaseRadius | ( | const MR_ConeObject * | _this, |
| const MR_ViewportId * | id ) |
Computes the base base radius from the xf. Generated from method MR::ConeObject::getBaseRadius. Parameter _this can not be null. It is a single object. Parameter id has a default argument: {}, pass a null pointer to use it.
| MRC_API MR_Box3f MR_ConeObject_getBoundingBox | ( | const MR_ConeObject * | _this | ) |
returns cached bounding box of this object in local coordinates Generated from method MR::ConeObject::getBoundingBox. Parameter _this can not be null. It is a single object.
| MRC_API MR_Vector3f MR_ConeObject_getCenter | ( | const MR_ConeObject * | _this, |
| const MR_ViewportId * | id ) |
calculates center from xf. Center is the apex of the cone. Generated from method MR::ConeObject::getCenter. Parameter _this can not be null. It is a single object. Parameter id has a default argument: {}, pass a null pointer to use it.
| MRC_API MR_ColoringType MR_ConeObject_getColoringType | ( | const MR_ConeObject * | _this | ) |
returns the current coloring mode of the object Generated from method MR::ConeObject::getColoringType. Parameter _this can not be null. It is a single object.
| MRC_API const MR_Color * MR_ConeObject_getDecorationsColor | ( | const MR_ConeObject * | _this, |
| bool | selected, | ||
| const MR_ViewportId * | viewportId, | ||
| bool * | isDef ) |
Generated from method MR::ConeObject::getDecorationsColor. Parameter _this can not be null. It is a single object. Parameter viewportId has a default argument: {}, pass a null pointer to use it. Parameter isDef defaults to a null pointer in C++. The returned pointer will never be null. It is non-owning, do NOT destroy it.
| MRC_API const MR_ViewportProperty_MR_Color * MR_ConeObject_getDecorationsColorForAllViewports | ( | const MR_ConeObject * | _this, |
| bool | selected ) |
Generated from method MR::ConeObject::getDecorationsColorForAllViewports. Parameter _this can not be null. It is a single object. The returned pointer will never be null. It is non-owning, do NOT destroy it.
| MRC_API MR_Vector3f MR_ConeObject_getDirection | ( | const MR_ConeObject * | _this, |
| const MR_ViewportId * | id ) |
calculates main axis direction from xf Generated from method MR::ConeObject::getDirection. Parameter _this can not be null. It is a single object. Parameter id has a default argument: {}, pass a null pointer to use it.
| MRC_API unsigned int MR_ConeObject_getDirtyFlags | ( | const MR_ConeObject * | _this | ) |
returns current dirty flags for the object Generated from method MR::ConeObject::getDirtyFlags. Parameter _this can not be null. It is a single object.
| MRC_API const MR_Color * MR_ConeObject_getFrontColor | ( | const MR_ConeObject * | _this, |
| const bool * | selected, | ||
| const MR_ViewportId * | viewportId ) |
returns color of object when it is selected/not-selected (depending on argument) in given viewport Generated from method MR::ConeObject::getFrontColor. Parameter _this can not be null. It is a single object. Parameter selected has a default argument: true, pass a null pointer to use it. Parameter viewportId has a default argument: {}, pass a null pointer to use it. The returned pointer will never be null. It is non-owning, do NOT destroy it.
| MRC_API const MR_ViewportProperty_MR_Color * MR_ConeObject_getFrontColorsForAllViewports | ( | const MR_ConeObject * | _this, |
| const bool * | selected ) |
returns color of object when it is selected/not-selected (depending on argument) in all viewports Generated from method MR::ConeObject::getFrontColorsForAllViewports. Parameter _this can not be null. It is a single object. Parameter selected has a default argument: true, pass a null pointer to use it. The returned pointer will never be null. It is non-owning, do NOT destroy it.
| MRC_API const unsigned char * MR_ConeObject_getGlobalAlpha | ( | const MR_ConeObject * | _this, |
| const MR_ViewportId * | viewportId ) |
returns global transparency alpha of object in given viewport Generated from method MR::ConeObject::getGlobalAlpha. Parameter _this can not be null. It is a single object. Parameter viewportId has a default argument: {}, pass a null pointer to use it. The returned pointer will never be null. It is non-owning, do NOT destroy it.
| MRC_API const MR_ViewportProperty_unsigned_char * MR_ConeObject_getGlobalAlphaForAllViewports | ( | const MR_ConeObject * | _this | ) |
returns global transparency alpha of object in all viewports Generated from method MR::ConeObject::getGlobalAlphaForAllViewports. Parameter _this can not be null. It is a single object. The returned pointer will never be null. It is non-owning, do NOT destroy it.
| MRC_API float MR_ConeObject_getHeight | ( | const MR_ConeObject * | _this, |
| const MR_ViewportId * | id ) |
calculates cone height from xf Generated from method MR::ConeObject::getHeight. Parameter _this can not be null. It is a single object. Parameter id has a default argument: {}, pass a null pointer to use it.
| MRC_API MR_std_vector_std_string * MR_ConeObject_getInfoLines | ( | const MR_ConeObject * | _this | ) |
return several info lines that can better describe the object in the UI Generated from method MR::ConeObject::getInfoLines. Parameter _this can not be null. It is a single object. Never returns null. Returns an instance allocated on the heap! Must call MR_std_vector_std_string_Destroy() to free it when you're done using it.
| MRC_API float MR_ConeObject_getLineWidth | ( | const MR_ConeObject * | _this | ) |
Generated from method MR::ConeObject::getLineWidth. Parameter _this can not be null. It is a single object.
| MRC_API float MR_ConeObject_getMainFeatureAlpha | ( | const MR_ConeObject * | _this | ) |
Generated from method MR::ConeObject::getMainFeatureAlpha. Parameter _this can not be null. It is a single object.
| MRC_API MR_uint64_t MR_ConeObject_getModelHash | ( | const MR_ConeObject * | _this | ) |
Generated from method MR::ConeObject::getModelHash. Parameter _this can not be null. It is a single object.
| MRC_API MR_std_optional_MR_Vector3f * MR_ConeObject_getNormal | ( | const MR_ConeObject * | _this, |
| const MR_Vector3f * | point ) |
Generated from method MR::ConeObject::getNormal. Parameter _this can not be null. It is a single object. Parameter point can not be null. It is a single object. Never returns null. Returns an instance allocated on the heap! Must call MR_std_optional_MR_Vector3f_Destroy() to free it when you're done using it.
| MRC_API float MR_ConeObject_getPointSize | ( | const MR_ConeObject * | _this | ) |
Generated from method MR::ConeObject::getPointSize. Parameter _this can not be null. It is a single object.
| MRC_API bool MR_ConeObject_getRedrawFlag | ( | const MR_ConeObject * | _this, |
| const MR_ViewportMask * | viewportMask ) |
returns true if the object must be redrawn (due to dirty flags) in one of specified viewports Generated from method MR::ConeObject::getRedrawFlag. Parameter _this can not be null. It is a single object. Parameter viewportMask can not be null. It is a single object.
| MRC_API MR_Matrix3f MR_ConeObject_getRotationMatrix | ( | const MR_ConeObject * | _this, |
| const MR_ViewportId * | id, | ||
| bool * | isDef ) |
Generated from method MR::ConeObject::getRotationMatrix. Parameter _this can not be null. It is a single object. Parameter id has a default argument: {}, pass a null pointer to use it. Parameter isDef defaults to a null pointer in C++.
| MRC_API MR_Matrix3f MR_ConeObject_getScaleShearMatrix | ( | const MR_ConeObject * | _this, |
| const MR_ViewportId * | id, | ||
| bool * | isDef ) |
Generated from method MR::ConeObject::getScaleShearMatrix. Parameter _this can not be null. It is a single object. Parameter id has a default argument: {}, pass a null pointer to use it. Parameter isDef defaults to a null pointer in C++.
| MRC_API MR_std_shared_ptr_MR_Object * MR_ConeObject_getSharedPtr | ( | const MR_ConeObject * | _this | ) |
Generated from method MR::ConeObject::getSharedPtr. Parameter _this can not be null. It is a single object. Never returns null. Returns an instance allocated on the heap! Must call MR_std_shared_ptr_MR_Object_Destroy() to free it when you're done using it.
| MRC_API float MR_ConeObject_getShininess | ( | const MR_ConeObject * | _this | ) |
returns the current shininess visual value Generated from method MR::ConeObject::getShininess. Parameter _this can not be null. It is a single object.
| MRC_API float MR_ConeObject_getSpecularStrength | ( | const MR_ConeObject * | _this | ) |
returns intensity of reflections Generated from method MR::ConeObject::getSpecularStrength. Parameter _this can not be null. It is a single object.
| MRC_API float MR_ConeObject_getSubfeatureAlphaLines | ( | const MR_ConeObject * | _this | ) |
Generated from method MR::ConeObject::getSubfeatureAlphaLines. Parameter _this can not be null. It is a single object.
| MRC_API float MR_ConeObject_getSubfeatureAlphaMesh | ( | const MR_ConeObject * | _this | ) |
Generated from method MR::ConeObject::getSubfeatureAlphaMesh. Parameter _this can not be null. It is a single object.
| MRC_API float MR_ConeObject_getSubfeatureAlphaPoints | ( | const MR_ConeObject * | _this | ) |
Generated from method MR::ConeObject::getSubfeatureAlphaPoints. Parameter _this can not be null. It is a single object.
| MRC_API float MR_ConeObject_getSubfeatureLineWidth | ( | const MR_ConeObject * | _this | ) |
Generated from method MR::ConeObject::getSubfeatureLineWidth. Parameter _this can not be null. It is a single object.
| MRC_API float MR_ConeObject_getSubfeaturePointSize | ( | const MR_ConeObject * | _this | ) |
Generated from method MR::ConeObject::getSubfeaturePointSize. Parameter _this can not be null. It is a single object.
| MRC_API bool MR_ConeObject_getVisualizeProperty | ( | const MR_ConeObject * | _this, |
| const MR_AnyVisualizeMaskEnum * | type, | ||
| const MR_ViewportMask * | viewportMask ) |
returns true if the property is set at least in one viewport specified by the mask Generated from method MR::ConeObject::getVisualizeProperty. Parameter _this can not be null. It is a single object. Parameter type can not be null. It is a single object. Parameter viewportMask can not be null. It is a single object.
| MRC_API const MR_ViewportMask * MR_ConeObject_getVisualizePropertyMask | ( | const MR_ConeObject * | _this, |
| const MR_AnyVisualizeMaskEnum * | type ) |
Generated from method MR::ConeObject::getVisualizePropertyMask. Parameter _this can not be null. It is a single object. Parameter type can not be null. It is a single object. The returned pointer will never be null. It is non-owning, do NOT destroy it.
| MRC_API MR_Box3f MR_ConeObject_getWorldBox | ( | const MR_ConeObject * | _this, |
| const MR_ViewportId * | _1 ) |
returns bounding box of this object in given viewport in world coordinates, to get world bounding box of the object with all child objects, please call Object::getWorldTreeBox method Generated from method MR::ConeObject::getWorldBox. Parameter _this can not be null. It is a single object. Parameter _1 has a default argument: {}, pass a null pointer to use it.
| MRC_API MR_Box3f MR_ConeObject_getWorldTreeBox | ( | const MR_ConeObject * | _this, |
| const MR_ViewportId * | _1 ) |
empty box returns bounding box of this object and all children visible in given (or default) viewport in world coordinates Generated from method MR::ConeObject::getWorldTreeBox. Parameter _this can not be null. It is a single object. Parameter _1 has a default argument: {}, pass a null pointer to use it.
| MRC_API bool MR_ConeObject_globalClippedByPlane | ( | const MR_ConeObject * | _this, |
| const MR_ViewportMask * | viewportMask ) |
returns true if this object or any of its parents is clipped by plane in any of given viewports Generated from method MR::ConeObject::globalClippedByPlane. Parameter _this can not be null. It is a single object. Parameter viewportMask is a single object. Parameter viewportMask has a default argument: ViewportMask::any(), pass a null pointer to use it.
| MRC_API MR_ViewportMask * MR_ConeObject_globalClippedByPlaneMask | ( | const MR_ConeObject * | _this | ) |
returns all viewports where this object or any of its parents is clipped by plane Generated from method MR::ConeObject::globalClippedByPlaneMask. Parameter _this can not be null. It is a single object. Never returns null. Returns an instance allocated on the heap! Must call MR_ViewportMask_Destroy() to free it when you're done using it.
| MRC_API bool MR_ConeObject_globalVisibility | ( | const MR_ConeObject * | _this, |
| const MR_ViewportMask * | viewportMask ) |
returns true if this object is visible together with all its parents in any of given viewports Generated from method MR::ConeObject::globalVisibility. Parameter _this can not be null. It is a single object. Parameter viewportMask is a single object. Parameter viewportMask has a default argument: ViewportMask::any(), pass a null pointer to use it.
| MRC_API MR_ViewportMask * MR_ConeObject_globalVisibilityMask | ( | const MR_ConeObject * | _this | ) |
returns all viewports where this object is visible together with all its parents Generated from method MR::ConeObject::globalVisibilityMask. Parameter _this can not be null. It is a single object. Never returns null. Returns an instance allocated on the heap! Must call MR_ViewportMask_Destroy() to free it when you're done using it.
| MRC_API bool MR_ConeObject_hasModel | ( | const MR_ConeObject * | _this | ) |
does the object have any model available (but possibly empty), e.g. ObjectMesh has valid mesh() or ObjectPoints has valid pointCloud() Generated from method MR::ConeObject::hasModel. Parameter _this can not be null. It is a single object.
| MRC_API bool MR_ConeObject_hasVisualRepresentation | ( | const MR_ConeObject * | _this | ) |
does the object have any visual representation (visible points, triangles, edges, etc.), no considering child objects Generated from method MR::ConeObject::hasVisualRepresentation. Parameter _this can not be null. It is a single object.
| MRC_API MR_uint64_t MR_ConeObject_heapBytes | ( | const MR_ConeObject * | _this | ) |
returns the amount of memory this object occupies on heap Generated from method MR::ConeObject::heapBytes. Parameter _this can not be null. It is a single object.
| MRC_API bool MR_ConeObject_isAncestor | ( | const MR_ConeObject * | _this, |
| const MR_Object * | ancestor ) |
return true if given object is ancestor of this one, false otherwise Generated from method MR::ConeObject::isAncestor. Parameter _this can not be null. It is a single object.
| MRC_API bool MR_ConeObject_isAncillary | ( | const MR_ConeObject * | _this | ) |
Generated from method MR::ConeObject::isAncillary. Parameter _this can not be null. It is a single object.
| MRC_API bool MR_ConeObject_isGlobalAncillary | ( | const MR_ConeObject * | _this | ) |
returns true if the object or any of its ancestors are ancillary Generated from method MR::ConeObject::isGlobalAncillary. Parameter _this can not be null. It is a single object.
| MRC_API bool MR_ConeObject_isLocked | ( | const MR_ConeObject * | _this | ) |
object properties lock for UI Generated from method MR::ConeObject::isLocked. Parameter _this can not be null. It is a single object.
| MRC_API bool MR_ConeObject_isParentLocked | ( | const MR_ConeObject * | _this | ) |
If true, the scene tree GUI doesn't allow you to drag'n'drop this object into a different parent. Defaults to false. Generated from method MR::ConeObject::isParentLocked. Parameter _this can not be null. It is a single object.
| MRC_API bool MR_ConeObject_isPickable | ( | const MR_ConeObject * | _this, |
| const MR_ViewportMask * | viewportMask ) |
whether the object can be picked (by mouse) in any of given viewports Generated from method MR::ConeObject::isPickable. Parameter _this can not be null. It is a single object. Parameter viewportMask is a single object. Parameter viewportMask has a default argument: ViewportMask::any(), pass a null pointer to use it.
| MRC_API bool MR_ConeObject_isSelected | ( | const MR_ConeObject * | _this | ) |
Generated from method MR::ConeObject::isSelected. Parameter _this can not be null. It is a single object.
| MRC_API bool MR_ConeObject_isVisible | ( | const MR_ConeObject * | _this, |
| const MR_ViewportMask * | viewportMask ) |
checks whether the object is visible in any of the viewports specified by the mask (by default in any viewport) Generated from method MR::ConeObject::isVisible. Parameter _this can not be null. It is a single object. Parameter viewportMask is a single object. Parameter viewportMask has a default argument: ViewportMask::any(), pass a null pointer to use it.
| MRC_API MR_AddVisualProperties_MR_FeatureObject_MR_DimensionsVisualizePropertyType_diameter_MR_DimensionsVisualizePropertyType_angle_MR_DimensionsVisualizePropertyType_length * MR_ConeObject_MutableUpcastTo_MR_AddVisualProperties_MR_FeatureObject_MR_DimensionsVisualizePropertyType_diameter_MR_DimensionsVisualizePropertyType_angle_MR_DimensionsVisualizePropertyType_length | ( | MR_ConeObject * | object | ) |
Upcasts an instance of MR::ConeObject to its base class MR::AddVisualProperties<MR::FeatureObject, MR::DimensionsVisualizePropertyType::diameter, MR::DimensionsVisualizePropertyType::angle, MR::DimensionsVisualizePropertyType::length>.
| MRC_API MR_FeatureObject * MR_ConeObject_MutableUpcastTo_MR_FeatureObject | ( | MR_ConeObject * | object | ) |
Upcasts an instance of MR::ConeObject to its base class MR::FeatureObject.
| MRC_API MR_Object * MR_ConeObject_MutableUpcastTo_MR_Object | ( | MR_ConeObject * | object | ) |
Upcasts an instance of MR::ConeObject to its base class MR::Object.
| MRC_API MR_ObjectChildrenHolder * MR_ConeObject_MutableUpcastTo_MR_ObjectChildrenHolder | ( | MR_ConeObject * | object | ) |
Upcasts an instance of MR::ConeObject to its base class MR::ObjectChildrenHolder.
| MRC_API MR_VisualObject * MR_ConeObject_MutableUpcastTo_MR_VisualObject | ( | MR_ConeObject * | object | ) |
Upcasts an instance of MR::ConeObject to its base class MR::VisualObject.
| MRC_API const MR_std_string * MR_ConeObject_name | ( | const MR_ConeObject * | _this | ) |
Generated from method MR::ConeObject::name. Parameter _this can not be null. It is a single object. The returned pointer will never be null. It is non-owning, do NOT destroy it.
| MRC_API MR_ConeObject * MR_ConeObject_OffsetMutablePtr | ( | MR_ConeObject * | ptr, |
| ptrdiff_t | i ) |
Offsets a pointer to an array element by i positions (not bytes). Use only if you're certain that the pointer points to an array element.
| MRC_API const MR_ConeObject * MR_ConeObject_OffsetPtr | ( | const MR_ConeObject * | ptr, |
| ptrdiff_t | i ) |
Offsets a pointer to an array element by i positions (not bytes). Use only if you're certain that the pointer points to an array element.
| MRC_API MR_FeatureObjectProjectPointResult * MR_ConeObject_projectPoint | ( | const MR_ConeObject * | _this, |
| const MR_Vector3f * | point, | ||
| const MR_ViewportId * | id ) |
Generated from method MR::ConeObject::projectPoint. Parameter _this can not be null. It is a single object. Parameter point can not be null. It is a single object. Parameter id has a default argument: {}, pass a null pointer to use it. Never returns null. Returns an instance allocated on the heap! Must call MR_FeatureObjectProjectPointResult_Destroy() to free it when you're done using it.
| MRC_API void MR_ConeObject_removeAllChildren | ( | MR_ConeObject * | _this | ) |
detaches all recognized children from this, keeping all unrecognized ones Generated from method MR::ConeObject::removeAllChildren. Parameter _this can not be null. It is a single object.
| MRC_API bool MR_ConeObject_removeTag | ( | MR_ConeObject * | _this, |
| const char * | tag, | ||
| const char * | tag_end ) |
removes tag from the object's tag storage additionally calls ObjectTagManager::tagRemovedSignal Generated from method MR::ConeObject::removeTag. Parameter _this can not be null. It is a single object. Parameter tag can not be null. If tag_end is null, then tag is assumed to be null-terminated.
| MRC_API bool MR_ConeObject_render | ( | const MR_ConeObject * | _this, |
| const MR_ModelRenderParams * | _1 ) |
draws this object for visualization Returns true if something was drawn. Generated from method MR::ConeObject::render. Parameter _this can not be null. It is a single object. Parameter _1 can not be null. It is a single object.
| MRC_API void MR_ConeObject_renderForPicker | ( | const MR_ConeObject * | _this, |
| const MR_ModelBaseRenderParams * | _1, | ||
| unsigned int | _2 ) |
draws this object for picking Generated from method MR::ConeObject::renderForPicker. Parameter _this can not be null. It is a single object. Parameter _1 can not be null. It is a single object.
| MRC_API void MR_ConeObject_renderUi | ( | const MR_ConeObject * | _this, |
| const MR_UiRenderParams * | params ) |
draws this object for 2d UI Generated from method MR::ConeObject::renderUi. Parameter _this can not be null. It is a single object. Parameter params can not be null. It is a single object.
| MRC_API void MR_ConeObject_resetColors | ( | MR_ConeObject * | _this | ) |
reset all object colors to their default values from the current theme Generated from method MR::ConeObject::resetColors. Parameter _this can not be null. It is a single object.
| MRC_API void MR_ConeObject_resetDirty | ( | const MR_ConeObject * | _this | ) |
resets all dirty flags (except for cache flags that will be reset automatically on cache update) Generated from method MR::ConeObject::resetDirty. Parameter _this can not be null. It is a single object.
| MRC_API void MR_ConeObject_resetDirtyExceptMask | ( | const MR_ConeObject * | _this, |
| unsigned int | mask ) |
reset dirty flags without some specific bits (useful for lazy normals update) Generated from method MR::ConeObject::resetDirtyExceptMask. Parameter _this can not be null. It is a single object.
| MRC_API void MR_ConeObject_resetFrontColor | ( | MR_ConeObject * | _this | ) |
reset basic object colors to their default values from the current theme Generated from method MR::ConeObject::resetFrontColor. Parameter _this can not be null. It is a single object.
| MRC_API void MR_ConeObject_resetRedrawFlag | ( | const MR_ConeObject * | _this | ) |
Generated from method MR::ConeObject::resetRedrawFlag. Parameter _this can not be null. It is a single object.
| MRC_API void MR_ConeObject_resetXf | ( | MR_ConeObject * | _this, |
| const MR_ViewportId * | id ) |
Generated from method MR::ConeObject::resetXf. Parameter _this can not be null. It is a single object. Parameter id has a default argument: {}, pass a null pointer to use it.
| MRC_API bool MR_ConeObject_sameModels | ( | const MR_ConeObject * | _this, |
| const MR_Object * | other ) |
Generated from method MR::ConeObject::sameModels. Parameter _this can not be null. It is a single object. Parameter other can not be null. It is a single object.
| MRC_API bool MR_ConeObject_select | ( | MR_ConeObject * | _this, |
| bool | on ) |
selects the object, returns true if value changed, otherwise returns false Generated from method MR::ConeObject::select. Parameter _this can not be null. It is a single object.
| MRC_API void MR_ConeObject_setAllVisualizeProperties | ( | MR_ConeObject * | _this, |
| const MR_std_vector_MR_ViewportMask * | properties ) |
set all visualize properties masks Generated from method MR::ConeObject::setAllVisualizeProperties. Parameter _this can not be null. It is a single object. Parameter properties can not be null. It is a single object.
| MRC_API void MR_ConeObject_setAmbientStrength | ( | MR_ConeObject * | _this, |
| float | ambientStrength ) |
sets intensity of non-directional light Generated from method MR::ConeObject::setAmbientStrength. Parameter _this can not be null. It is a single object.
| MRC_API void MR_ConeObject_setAncillary | ( | MR_ConeObject * | _this, |
| bool | ancillary ) |
ancillary object is an object hidden (in scene menu) from a regular user such objects cannot be selected, and if it has been selected, it is unselected when turn ancillary Generated from method MR::ConeObject::setAncillary. Parameter _this can not be null. It is a single object.
| MRC_API void MR_ConeObject_setAngle | ( | MR_ConeObject * | _this, |
| float | angle, | ||
| const MR_ViewportId * | id ) |
updates xf to fit given cone angle. It is an angle betweeh main axis and side Generated from method MR::ConeObject::setAngle. Parameter _this can not be null. It is a single object. Parameter id has a default argument: {}, pass a null pointer to use it.
| MRC_API void MR_ConeObject_setBackColor | ( | MR_ConeObject * | _this, |
| const MR_Color * | color, | ||
| const MR_ViewportId * | viewportId ) |
sets backward color of object in given viewport Generated from method MR::ConeObject::setBackColor. Parameter _this can not be null. It is a single object. Parameter color can not be null. It is a single object. Parameter viewportId has a default argument: {}, pass a null pointer to use it.
| MRC_API void MR_ConeObject_setBackColorsForAllViewports | ( | MR_ConeObject * | _this, |
| MR_PassBy | val_pass_by, | ||
| MR_ViewportProperty_MR_Color * | val ) |
sets backward color of object in all viewports Generated from method MR::ConeObject::setBackColorsForAllViewports. Parameter _this can not be null. It is a single object.
| MRC_API void MR_ConeObject_setBaseRadius | ( | MR_ConeObject * | _this, |
| float | radius, | ||
| const MR_ViewportId * | id ) |
Updates the xf for the new base radius. Generated from method MR::ConeObject::setBaseRadius. Parameter _this can not be null. It is a single object. Parameter id has a default argument: {}, pass a null pointer to use it.
| MRC_API void MR_ConeObject_setCenter | ( | MR_ConeObject * | _this, |
| const MR_Vector3f * | center, | ||
| const MR_ViewportId * | id ) |
updates xf to fit given center. Center is the apex of the cone. Generated from method MR::ConeObject::setCenter. Parameter _this can not be null. It is a single object. Parameter center can not be null. It is a single object. Parameter id has a default argument: {}, pass a null pointer to use it.
| MRC_API void MR_ConeObject_setColoringType | ( | MR_ConeObject * | _this, |
| MR_ColoringType | coloringType ) |
sets coloring mode of the object with given argument Generated from method MR::ConeObject::setColoringType. Parameter _this can not be null. It is a single object.
| MRC_API void MR_ConeObject_setDecorationsColor | ( | MR_ConeObject * | _this, |
| const MR_Color * | color, | ||
| bool | selected, | ||
| const MR_ViewportId * | viewportId ) |
Generated from method MR::ConeObject::setDecorationsColor. Parameter _this can not be null. It is a single object. Parameter color can not be null. It is a single object. Parameter viewportId has a default argument: {}, pass a null pointer to use it.
| MRC_API void MR_ConeObject_setDecorationsColorForAllViewports | ( | MR_ConeObject * | _this, |
| MR_PassBy | val_pass_by, | ||
| MR_ViewportProperty_MR_Color * | val, | ||
| bool | selected ) |
Generated from method MR::ConeObject::setDecorationsColorForAllViewports. Parameter _this can not be null. It is a single object.
| MRC_API void MR_ConeObject_setDirection | ( | MR_ConeObject * | _this, |
| const MR_Vector3f * | normal, | ||
| const MR_ViewportId * | id ) |
updates xf to fit main axis Generated from method MR::ConeObject::setDirection. Parameter _this can not be null. It is a single object. Parameter normal can not be null. It is a single object. Parameter id has a default argument: {}, pass a null pointer to use it.
| MRC_API void MR_ConeObject_setDirtyFlags | ( | MR_ConeObject * | _this, |
| unsigned int | mask, | ||
| const bool * | invalidateCaches ) |
sets some dirty flags for the object (to force its visual update)
| mask | is a union of DirtyFlags flags |
| invalidateCaches | whether to automatically invalidate model caches (pass false here if you manually update the caches) Generated from method MR::ConeObject::setDirtyFlags. Parameter _this can not be null. It is a single object. Parameter invalidateCaches has a default argument: true, pass a null pointer to use it. |
| MRC_API void MR_ConeObject_setFrontColor | ( | MR_ConeObject * | _this, |
| const MR_Color * | color, | ||
| bool | selected, | ||
| const MR_ViewportId * | viewportId ) |
sets color of object when it is selected/not-selected (depending on argument) in given viewport Generated from method MR::ConeObject::setFrontColor. Parameter _this can not be null. It is a single object. Parameter color can not be null. It is a single object. Parameter viewportId has a default argument: {}, pass a null pointer to use it.
| MRC_API void MR_ConeObject_setFrontColorsForAllViewports | ( | MR_ConeObject * | _this, |
| MR_PassBy | val_pass_by, | ||
| MR_ViewportProperty_MR_Color * | val, | ||
| const bool * | selected ) |
sets color of object when it is selected/not-selected (depending on argument) in all viewports Generated from method MR::ConeObject::setFrontColorsForAllViewports. Parameter _this can not be null. It is a single object. Parameter selected has a default argument: true, pass a null pointer to use it.
| MRC_API void MR_ConeObject_setGlobalAlpha | ( | MR_ConeObject * | _this, |
| unsigned char | alpha, | ||
| const MR_ViewportId * | viewportId ) |
sets global transparency alpha of object in given viewport Generated from method MR::ConeObject::setGlobalAlpha. Parameter _this can not be null. It is a single object. Parameter viewportId has a default argument: {}, pass a null pointer to use it.
| MRC_API void MR_ConeObject_setGlobalAlphaForAllViewports | ( | MR_ConeObject * | _this, |
| MR_PassBy | val_pass_by, | ||
| MR_ViewportProperty_unsigned_char * | val ) |
sets global transparency alpha of object in all viewports Generated from method MR::ConeObject::setGlobalAlphaForAllViewports. Parameter _this can not be null. It is a single object.
| MRC_API void MR_ConeObject_setGlobalClippedByPlane | ( | MR_ConeObject * | _this, |
| bool | on, | ||
| const MR_ViewportMask * | viewportMask ) |
if false deactivates clipped-by-plane for this object and all of its parents, otherwise sets clipped-by-plane for this this object only Generated from method MR::ConeObject::setGlobalClippedByPlane. Parameter _this can not be null. It is a single object. Parameter viewportMask is a single object. Parameter viewportMask has a default argument: ViewportMask::all(), pass a null pointer to use it.
| MRC_API void MR_ConeObject_setGlobalVisibility | ( | MR_ConeObject * | _this, |
| bool | on, | ||
| const MR_ViewportMask * | viewportMask ) |
if true sets all predecessors visible, otherwise sets this object invisible Generated from method MR::ConeObject::setGlobalVisibility. Parameter _this can not be null. It is a single object. Parameter viewportMask is a single object. Parameter viewportMask has a default argument: ViewportMask::any(), pass a null pointer to use it.
| MRC_API void MR_ConeObject_setHeight | ( | MR_ConeObject * | _this, |
| float | height, | ||
| const MR_ViewportId * | id ) |
updates xf to fit cone height Generated from method MR::ConeObject::setHeight. Parameter _this can not be null. It is a single object. Parameter id has a default argument: {}, pass a null pointer to use it.
| MRC_API void MR_ConeObject_setLineWidth | ( | MR_ConeObject * | _this, |
| float | lineWidth ) |
Generated from method MR::ConeObject::setLineWidth. Parameter _this can not be null. It is a single object.
| MRC_API void MR_ConeObject_setLocked | ( | MR_ConeObject * | _this, |
| bool | on ) |
Generated from method MR::ConeObject::setLocked. Parameter _this can not be null. It is a single object.
| MRC_API void MR_ConeObject_setMainFeatureAlpha | ( | MR_ConeObject * | _this, |
| float | alpha ) |
Generated from method MR::ConeObject::setMainFeatureAlpha. Parameter _this can not be null. It is a single object.
| MRC_API void MR_ConeObject_setName | ( | MR_ConeObject * | _this, |
| const char * | name, | ||
| const char * | name_end ) |
Generated from method MR::ConeObject::setName. Parameter _this can not be null. It is a single object. Parameter name can not be null. If name_end is null, then name is assumed to be null-terminated.
| MRC_API void MR_ConeObject_setParentLocked | ( | MR_ConeObject * | _this, |
| bool | lock ) |
Generated from method MR::ConeObject::setParentLocked. Parameter _this can not be null. It is a single object.
| MRC_API void MR_ConeObject_setPickable | ( | MR_ConeObject * | _this, |
| bool | on, | ||
| const MR_ViewportMask * | viewportMask ) |
sets the object as can/cannot be picked (by mouse) in all of given viewports Generated from method MR::ConeObject::setPickable. Parameter _this can not be null. It is a single object. Parameter viewportMask is a single object. Parameter viewportMask has a default argument: ViewportMask::all(), pass a null pointer to use it.
| MRC_API void MR_ConeObject_setPointSize | ( | MR_ConeObject * | _this, |
| float | pointSize ) |
Generated from method MR::ConeObject::setPointSize. Parameter _this can not be null. It is a single object.
| MRC_API void MR_ConeObject_setShininess | ( | MR_ConeObject * | _this, |
| float | shininess ) |
sets shininess visual value of the object with given argument Generated from method MR::ConeObject::setShininess. Parameter _this can not be null. It is a single object.
| MRC_API void MR_ConeObject_setSpecularStrength | ( | MR_ConeObject * | _this, |
| float | specularStrength ) |
sets intensity of reflections Generated from method MR::ConeObject::setSpecularStrength. Parameter _this can not be null. It is a single object.
| MRC_API void MR_ConeObject_setSubfeatureAlphaLines | ( | MR_ConeObject * | _this, |
| float | alpha ) |
Generated from method MR::ConeObject::setSubfeatureAlphaLines. Parameter _this can not be null. It is a single object.
| MRC_API void MR_ConeObject_setSubfeatureAlphaMesh | ( | MR_ConeObject * | _this, |
| float | alpha ) |
Generated from method MR::ConeObject::setSubfeatureAlphaMesh. Parameter _this can not be null. It is a single object.
| MRC_API void MR_ConeObject_setSubfeatureAlphaPoints | ( | MR_ConeObject * | _this, |
| float | alpha ) |
Generated from method MR::ConeObject::setSubfeatureAlphaPoints. Parameter _this can not be null. It is a single object.
| MRC_API void MR_ConeObject_setSubfeatureLineWidth | ( | MR_ConeObject * | _this, |
| float | lineWidth ) |
Generated from method MR::ConeObject::setSubfeatureLineWidth. Parameter _this can not be null. It is a single object.
| MRC_API void MR_ConeObject_setSubfeaturePointSize | ( | MR_ConeObject * | _this, |
| float | pointSize ) |
Generated from method MR::ConeObject::setSubfeaturePointSize. Parameter _this can not be null. It is a single object.
| MRC_API void MR_ConeObject_setUseDefaultScenePropertiesOnDeserialization | ( | MR_ConeObject * | _this, |
| bool | useDefaultScenePropertiesOnDeserialization ) |
set whether the scene-related properties should get their values from SceneColors and SceneSettings instances rather than from the input data on deserialization Generated from method MR::ConeObject::setUseDefaultScenePropertiesOnDeserialization. Parameter _this can not be null. It is a single object.
| MRC_API void MR_ConeObject_setVisibilityMask | ( | MR_ConeObject * | _this, |
| const MR_ViewportMask * | viewportMask ) |
specifies object visibility as bitmask of viewports Generated from method MR::ConeObject::setVisibilityMask. Parameter _this can not be null. It is a single object. Parameter viewportMask can not be null. It is a single object.
| MRC_API void MR_ConeObject_setVisible | ( | MR_ConeObject * | _this, |
| bool | on, | ||
| const MR_ViewportMask * | viewportMask ) |
sets the object visible in the viewports specified by the mask (by default in all viewports) Generated from method MR::ConeObject::setVisible. Parameter _this can not be null. It is a single object. Parameter viewportMask is a single object. Parameter viewportMask has a default argument: ViewportMask::all(), pass a null pointer to use it.
| MRC_API void MR_ConeObject_setVisualizeProperty | ( | MR_ConeObject * | _this, |
| bool | value, | ||
| const MR_AnyVisualizeMaskEnum * | type, | ||
| const MR_ViewportMask * | viewportMask ) |
set visual property in all viewports specified by the mask Generated from method MR::ConeObject::setVisualizeProperty. Parameter _this can not be null. It is a single object. Parameter type can not be null. It is a single object. Parameter viewportMask can not be null. It is a single object.
| MRC_API void MR_ConeObject_setVisualizePropertyMask | ( | MR_ConeObject * | _this, |
| const MR_AnyVisualizeMaskEnum * | type, | ||
| const MR_ViewportMask * | viewportMask ) |
set visual property mask Generated from method MR::ConeObject::setVisualizePropertyMask. Parameter _this can not be null. It is a single object. Parameter type can not be null. It is a single object. Parameter viewportMask can not be null. It is a single object.
| MRC_API void MR_ConeObject_setWorldXf | ( | MR_ConeObject * | _this, |
| const MR_AffineXf3f * | xf, | ||
| const MR_ViewportId * | id ) |
Generated from method MR::ConeObject::setWorldXf. Parameter _this can not be null. It is a single object. Parameter xf can not be null. It is a single object. Parameter id has a default argument: {}, pass a null pointer to use it.
| MRC_API void MR_ConeObject_setXf | ( | MR_ConeObject * | _this, |
| const MR_AffineXf3f * | xf, | ||
| const MR_ViewportId * | id ) |
Generated from method MR::ConeObject::setXf. Parameter _this can not be null. It is a single object. Parameter xf can not be null. It is a single object. Parameter id has a default argument: {}, pass a null pointer to use it.
| MRC_API void MR_ConeObject_setXfsForAllViewports | ( | MR_ConeObject * | _this, |
| MR_PassBy | xf_pass_by, | ||
| MR_ViewportProperty_MR_AffineXf3f * | xf ) |
modifies xfs for all viewports at once Generated from method MR::ConeObject::setXfsForAllViewports. Parameter _this can not be null. It is a single object.
| MRC_API MR_std_shared_ptr_MR_Object * MR_ConeObject_shallowClone | ( | const MR_ConeObject * | _this | ) |
Generated from method MR::ConeObject::shallowClone. Parameter _this can not be null. It is a single object. Never returns null. Returns an instance allocated on the heap! Must call MR_std_shared_ptr_MR_Object_Destroy() to free it when you're done using it.
| MRC_API MR_std_shared_ptr_MR_Object * MR_ConeObject_shallowCloneTree | ( | const MR_ConeObject * | _this | ) |
clones all tree of this object (except ancillary and unrecognied children) clones only pointers to mesh, points or voxels Generated from method MR::ConeObject::shallowCloneTree. Parameter _this can not be null. It is a single object. Never returns null. Returns an instance allocated on the heap! Must call MR_std_shared_ptr_MR_Object_Destroy() to free it when you're done using it.
| MRC_API void MR_ConeObject_sortChildren | ( | MR_ConeObject * | _this | ) |
sort recognized children by name Generated from method MR::ConeObject::sortChildren. Parameter _this can not be null. It is a single object.
| MRC_API const char * MR_ConeObject_StaticClassName | ( | void | ) |
Generated from method MR::ConeObject::StaticClassName.
| MRC_API const char * MR_ConeObject_StaticClassNameInPlural | ( | void | ) |
Generated from method MR::ConeObject::StaticClassNameInPlural.
| MRC_API const char * MR_ConeObject_StaticTypeName | ( | void | ) |
Generated from method MR::ConeObject::StaticTypeName.
| MRC_API bool MR_ConeObject_supportsVisualizeProperty | ( | const MR_ConeObject * | _this, |
| const MR_AnyVisualizeMaskEnum * | type ) |
Generated from method MR::ConeObject::supportsVisualizeProperty. Parameter _this can not be null. It is a single object. Parameter type can not be null. It is a single object.
| MRC_API void MR_ConeObject_swap | ( | MR_ConeObject * | _this, |
| MR_Object * | other ) |
swaps this object with other note: do not swap object signals, so listeners will get notifications from swapped object requires implementation of swapBase_ and swapSignals_ (if type has signals) Generated from method MR::ConeObject::swap. Parameter _this can not be null. It is a single object. Parameter other can not be null. It is a single object.
| MRC_API const MR_std_set_std_string * MR_ConeObject_tags | ( | const MR_ConeObject * | _this | ) |
provides read-only access to the tag storage the storage is a set of unique strings Generated from method MR::ConeObject::tags. Parameter _this can not be null. It is a single object. The returned pointer will never be null. It is non-owning, do NOT destroy it.
| MRC_API void MR_ConeObject_toggleVisualizeProperty | ( | MR_ConeObject * | _this, |
| const MR_AnyVisualizeMaskEnum * | type, | ||
| const MR_ViewportMask * | viewportMask ) |
toggle visual property in all viewports specified by the mask Generated from method MR::ConeObject::toggleVisualizeProperty. Parameter _this can not be null. It is a single object. Parameter type can not be null. It is a single object. Parameter viewportMask can not be null. It is a single object.
| MRC_API const char * MR_ConeObject_typeName | ( | const MR_ConeObject * | _this | ) |
Generated from method MR::ConeObject::typeName. Parameter _this can not be null. It is a single object.
| MRC_API const MR_AddVisualProperties_MR_FeatureObject_MR_DimensionsVisualizePropertyType_diameter_MR_DimensionsVisualizePropertyType_angle_MR_DimensionsVisualizePropertyType_length * MR_ConeObject_UpcastTo_MR_AddVisualProperties_MR_FeatureObject_MR_DimensionsVisualizePropertyType_diameter_MR_DimensionsVisualizePropertyType_angle_MR_DimensionsVisualizePropertyType_length | ( | const MR_ConeObject * | object | ) |
Upcasts an instance of MR::ConeObject to its base class MR::AddVisualProperties<MR::FeatureObject, MR::DimensionsVisualizePropertyType::diameter, MR::DimensionsVisualizePropertyType::angle, MR::DimensionsVisualizePropertyType::length>. This version is acting on mutable pointers.
| MRC_API const MR_FeatureObject * MR_ConeObject_UpcastTo_MR_FeatureObject | ( | const MR_ConeObject * | object | ) |
Upcasts an instance of MR::ConeObject to its base class MR::FeatureObject. This version is acting on mutable pointers.
| MRC_API const MR_Object * MR_ConeObject_UpcastTo_MR_Object | ( | const MR_ConeObject * | object | ) |
Upcasts an instance of MR::ConeObject to its base class MR::Object. This version is acting on mutable pointers.
| MRC_API const MR_ObjectChildrenHolder * MR_ConeObject_UpcastTo_MR_ObjectChildrenHolder | ( | const MR_ConeObject * | object | ) |
Upcasts an instance of MR::ConeObject to its base class MR::ObjectChildrenHolder. This version is acting on mutable pointers.
| MRC_API const MR_VisualObject * MR_ConeObject_UpcastTo_MR_VisualObject | ( | const MR_ConeObject * | object | ) |
Upcasts an instance of MR::ConeObject to its base class MR::VisualObject. This version is acting on mutable pointers.
| MRC_API bool MR_ConeObject_useDefaultScenePropertiesOnDeserialization | ( | const MR_ConeObject * | _this | ) |
whether the scene-related properties should get their values from SceneColors and SceneSettings instances rather than from the input data on deserialization Generated from method MR::ConeObject::useDefaultScenePropertiesOnDeserialization. Parameter _this can not be null. It is a single object.
| MRC_API MR_ViewportMask * MR_ConeObject_visibilityMask | ( | const MR_ConeObject * | _this | ) |
gets object visibility as bitmask of viewports Generated from method MR::ConeObject::visibilityMask. Parameter _this can not be null. It is a single object. Never returns null. Returns an instance allocated on the heap! Must call MR_ViewportMask_Destroy() to free it when you're done using it.
| MRC_API MR_AffineXf3f MR_ConeObject_worldXf | ( | const MR_ConeObject * | _this, |
| const MR_ViewportId * | id, | ||
| bool * | isDef ) |
this space to world space transformation for default or specific viewport
| isDef | receives true if the object has default transformation in this viewport (same as worldXf() returns) Generated from method MR::ConeObject::worldXf. Parameter _this can not be null. It is a single object. Parameter id has a default argument: {}, pass a null pointer to use it. Parameter isDef defaults to a null pointer in C++. |
| MRC_API const MR_AffineXf3f * MR_ConeObject_xf | ( | const MR_ConeObject * | _this, |
| const MR_ViewportId * | id, | ||
| bool * | isDef ) |
this space to parent space transformation (to world space if no parent) for default or given viewport
| isDef | receives true if the object has default transformation in this viewport (same as xf() returns) Generated from method MR::ConeObject::xf. Parameter _this can not be null. It is a single object. Parameter id has a default argument: {}, pass a null pointer to use it. Parameter isDef defaults to a null pointer in C++. The returned pointer will never be null. It is non-owning, do NOT destroy it. |
| MRC_API const MR_ViewportProperty_MR_AffineXf3f * MR_ConeObject_xfsForAllViewports | ( | const MR_ConeObject * | _this | ) |
returns xfs for all viewports, combined into a single object Generated from method MR::ConeObject::xfsForAllViewports. Parameter _this can not be null. It is a single object. The returned pointer will never be null. It is non-owning, do NOT destroy it.