|
(Note that these are not member functions.)
|
SUDimensionRef | SUDimensionLinearToDimension (SUDimensionLinearRef dimension) |
| Converts from an SUDimensionLinearRef to an SUDimensionRef. This is essentially an upcast operation. More...
|
|
SUDimensionLinearRef | SUDimensionLinearFromDimension (SUDimensionRef dimension) |
| Converts from an SUDimensionRef to an SUDimensionLinearRef. This is essentially a downcast operation so the given SUDimensionRef must be convertible to an SUDimensionLinearRef. More...
|
|
enum SUResult | SUDimensionLinearCreate (SUDimensionLinearRef *dimension, const struct SUPoint3D *start_point, SUInstancePathRef start_path, const struct SUPoint3D *end_point, SUInstancePathRef end_path, double offset) |
| Creates a new linear dimension object with default data. Refer to the documentation for SUDimensionLinearSetStartPoint() for more information about the various supported ways for setting connection points. More...
|
|
enum SUResult | SUDimensionLinearRelease (SUDimensionLinearRef *dimension) |
| Releases a dimension object. More...
|
|
enum SUResult | SUDimensionLinearGetStartPoint (SUDimensionLinearRef dimension, struct SUPoint3D *point, SUInstancePathRef *path) |
| Retrieves the start point of a dimension object. The given instance path object either must have been constructed using one of the SUInstancePathCreate* functions or it will be generated on the fly if it is invalid. It must be released using SUInstancePathRelease() when it is no longer needed. More...
|
|
enum SUResult | SUDimensionLinearSetStartPoint (SUDimensionLinearRef dimension, const struct SUPoint3D *point, SUInstancePathRef path) |
| Sets the start connection point of a dimension object. A dimension's connection point can be set in a few different ways. In the simplest form a connection point can be set to an arbitrary point in space by providing a non-null SUPoint3D and an invalid SUInstancePathRef. The more complex forms connect the point to a position on an entity in the model by providing a valid SUInstancePathRef which refers to an existing model entity. In the more complex forms the the input SUPoint3D must be non-null for all connectable entity types except for vertices and guide points, in which case the SUPoint3D argument may be null as it will be ignored. It should be noted that when changing a dimension's connection point the other point may need to be adjusted as well. Users may want to verify the other connection point after setting this one. More...
|
|
enum SUResult | SUDimensionLinearGetEndPoint (SUDimensionLinearRef dimension, struct SUPoint3D *point, SUInstancePathRef *path) |
| Retrieves the end point of a dimension object. The given instance path object either must have been constructed using one of the SUInstancePathCreate* functions or it will be generated on the fly if it is invalid. It must be released using SUInstancePathRelease() when it is no longer needed. More...
|
|
enum SUResult | SUDimensionLinearSetEndPoint (SUDimensionLinearRef dimension, const struct SUPoint3D *point, SUInstancePathRef path) |
| Sets the end connection point of a dimension object. Refer to the documentation for SUDimensionLinearSetStartPoint() for a detailed description on supported ways of setting a dimension's connection point. More...
|
|
enum SUResult | SUDimensionLinearGetXAxis (SUDimensionLinearRef dimension, struct SUVector3D *axis) |
| Retrieves the x-axis of a dimension object. The x-axis is the axis along the length of the dimension. More...
|
|
enum SUResult | SUDimensionLinearSetXAxis (SUDimensionLinearRef dimension, const struct SUVector3D *axis) |
| Sets the x-axis of a dimension object. More...
|
|
enum SUResult | SUDimensionLinearGetNormal (SUDimensionLinearRef dimension, struct SUVector3D *normal) |
| Retrieves the normal vector of a dimension object. The normal vector is a unit vector pointing out of the plane of the linear dimension. A linear dimension's plane is the plane defined by the x-axis and the leader lines' direction vector. More...
|
|
enum SUResult | SUDimensionLinearSetNormal (SUDimensionLinearRef dimension, const struct SUVector3D *normal) |
| Sets the normal vector of a dimension object. More...
|
|
enum SUResult | SUDimensionLinearGetPosition (SUDimensionLinearRef dimension, struct SUPoint2D *position) |
| Retrieves the position of a dimension object. The position is a 2D point in the dimension's plane indicating where the dimension text is located. More...
|
|
enum SUResult | SUDimensionLinearSetPosition (SUDimensionLinearRef dimension, const struct SUPoint2D *position) |
| Sets the position of a dimension object. More...
|
|
enum SUResult | SUDimensionLinearGetVerticalAlignment (SUDimensionLinearRef dimension, enum SUVerticalTextPositionType *alignment) |
| Retrieves an enum value indicating the dimension's vertical alignment type. More...
|
|
enum SUResult | SUDimensionLinearSetVerticalAlignment (SUDimensionLinearRef dimension, enum SUVerticalTextPositionType alignment) |
| Sets the dimension's vertical alignment type. More...
|
|
enum SUResult | SUDimensionLinearGetHorizontalAlignment (SUDimensionLinearRef dimension, enum SUHorizontalTextPositionType *alignment) |
| Retrieves an enum value indicating the dimension's horizontal alignment type. More...
|
|
enum SUResult | SUDimensionLinearSetHorizontalAlignment (SUDimensionLinearRef dimension, enum SUHorizontalTextPositionType alignment) |
| Sets the dimension's horizontal alignment type. More...
|
|
enum SUResult | SUDimensionLinearGetAlignment (SUDimensionLinearRef dimension, enum SUDimensionLinearAlignmentType *alignment) |
| Retrieves an enum value indicating the linear dimension's alignment type. More...
|
|
enum SUResult | SUDimensionLinearGetTextPosition (SUDimensionLinearRef dimension, struct SUPoint3D *position) |
| Retrieves the position of the text location attachment point of the dimension text. Note that depending on the TextPosition enumerator, this can be the center or side of a text element. More...
|
|
SUEntityRef | SUDimensionToEntity (SUDimensionRef dimension) |
| Converts from an SUDimensionRef to an SUEntityRef. This is essentially an upcast operation. More...
|
|
SUDimensionRef | SUDimensionFromEntity (SUEntityRef entity) |
| Converts from an SUEntityRef to an SUDimensionRef. This is essentially a downcast operation so the given SUEntityRef must be convertible to an SUDimensionRef. More...
|
|
SUDrawingElementRef | SUDimensionToDrawingElement (SUDimensionRef dimension) |
| Converts from an SUDimensionRef to an SUDrawingElementRef. This is essentially an upcast operation. More...
|
|
SUDimensionRef | SUDimensionFromDrawingElement (SUDrawingElementRef element) |
| Converts from an SUDrawingElementRef to an SUDimensionRef. This is essentially a downcast operation so the given SUDrawingElementRef must be convertible to an SUDimensionRef. More...
|
|
enum SUResult | SUDimensionGetType (SUDimensionRef dimension, enum SUDimensionType *type) |
| Retrieves an enum value indicating the dimension type (linear or radial). More...
|
|
enum SUResult | SUDimensionGetText (SUDimensionRef dimension, SUStringRef *text) |
| Retrieves the text of a dimension object. More...
|
|
enum SUResult | SUDimensionSetText (SUDimensionRef dimension, const char *text) |
| Sets the text of a dimension object. More...
|
|
enum SUResult | SUDimensionGetPlane (SUDimensionRef dimension, struct SUPlane3D *plane) |
| Retrieves the plane of a dimension object. More...
|
|
enum SUResult | SUDimensionGetText3D (SUDimensionRef dimension, bool *is_text_3d) |
| Retrieves a boolean indicating if the dimension text is 3D. More...
|
|
enum SUResult | SUDimensionSetText3D (SUDimensionRef dimension, bool is_text_3d) |
| Sets a boolean indicating whether the dimension text is 3D. More...
|
|
enum SUResult | SUDimensionGetArrowType (SUDimensionRef dimension, enum SUArrowType *type) |
| Retrieves an enum value indicating the dimension's arrow type. More...
|
|
enum SUResult | SUDimensionSetArrowType (SUDimensionRef dimension, enum SUArrowType type) |
| Sets the dimension's arrow type. More...
|
|
enum SUResult | SUDimensionGetFont (SUDimensionRef dimension, SUFontRef *font) |
| Get the dimension's font reference. More...
|
|
enum SUResult | SUDimensionSetFont (SUDimensionRef dimension, SUFontRef font) |
| Sets the dimension's font from a font reference. More...
|
|
SUEntityRef | SUDrawingElementToEntity (SUDrawingElementRef elem) |
| Converts from an SUDrawingElementRef to an SUEntityRef. This is essentially an upcast operation. More...
|
|
SUDrawingElementRef | SUDrawingElementFromEntity (SUEntityRef entity) |
| Converts from an SUEntityRef to an SUDrawingElementRef. This is essentially a downcast operation so the given entity must be convertible to a drawing element. More...
|
|
enum SURefType | SUDrawingElementGetType (SUDrawingElementRef elem) |
| Returns the concrete type of the given drawing element. More...
|
|
enum SUResult | SUDrawingElementGetBoundingBox (SUDrawingElementRef elem, struct SUBoundingBox3D *bbox) |
| Retrieves the bounding box of a drawing element. More...
|
|
enum SUResult | SUDrawingElementGetMaterial (SUDrawingElementRef elem, SUMaterialRef *material) |
| Retrieves the material object of a drawing element. More...
|
|
enum SUResult | SUDrawingElementSetMaterial (SUDrawingElementRef elem, SUMaterialRef material) |
| Sets the material of a drawing element. More...
|
|
enum SUResult | SUDrawingElementGetLayer (SUDrawingElementRef elem, SULayerRef *layer) |
| Retrieves the layer object associated with a drawing element. More...
|
|
enum SUResult | SUDrawingElementSetLayer (SUDrawingElementRef elem, SULayerRef layer) |
| Sets the layer object to be associated with a drawing element. More...
|
|
enum SUResult | SUDrawingElementSetHidden (SUDrawingElementRef elem, bool hide_flag) |
| Sets the hide flag of a drawing element. More...
|
|
enum SUResult | SUDrawingElementGetHidden (SUDrawingElementRef elem, bool *hide_flag) |
| Retrieves the hide flag of a drawing element. More...
|
|
enum SUResult | SUDrawingElementSetCastsShadows (SUDrawingElementRef elem, bool casts_shadows_flag) |
| Sets the casts shadows flag of a drawing element. More...
|
|
enum SUResult | SUDrawingElementGetCastsShadows (SUDrawingElementRef elem, bool *casts_shadows_flag) |
| Retrieves the casts shadows flag of a drawing element. More...
|
|
enum SUResult | SUDrawingElementSetReceivesShadows (SUDrawingElementRef elem, bool receives_shadows_flag) |
| Sets the receives shadows flag of a drawing element. More...
|
|
enum SUResult | SUDrawingElementGetReceivesShadows (SUDrawingElementRef elem, bool *receives_shadows_flag) |
| Retrieves the receives shadows flag of a drawing element. More...
|
|
enum SURefType | SUEntityGetType (SUEntityRef entity) |
| Returns the concrete type of the given entity. More...
|
|
enum SUResult | SUEntityGetID (SUEntityRef entity, int32_t *entity_id) |
| Retrieves the id of the entity. More...
|
|
enum SUResult | SUEntityGetPersistentID (SUEntityRef entity, int64_t *entity_pid) |
| Retrieves the persistent id of the entity. More...
|
|
enum SUResult | SUEntityGetNumAttributeDictionaries (SUEntityRef entity, size_t *count) |
| Retrieves the number of attribute dictionaries of an entity. More...
|
|
enum SUResult | SUEntityGetAttributeDictionaries (SUEntityRef entity, size_t len, SUAttributeDictionaryRef dictionaries[], size_t *count) |
| Retrieves the attribute dictionaries of an entity. More...
|
|
enum SUResult | SUEntityAddAttributeDictionary (SUEntityRef entity, SUAttributeDictionaryRef dictionary) |
| Adds the attribute dictionary to an entity. The given dictionary object must not belong to another entity. In other words, each dictionary should be added to one entity only. More...
|
|
enum SUResult | SUEntityGetAttributeDictionary (SUEntityRef entity, const char *name, SUAttributeDictionaryRef *dictionary) |
| Retrieves the attribute dictionary of an entity that has the given name. More...
|
|
enum SUResult | SUEntityGetModel (SUEntityRef entity, SUModelRef *model) |
| Retrieves the model object associated with the entity. More...
|
|
enum SUResult | SUEntityGetParentEntities (SUEntityRef entity, SUEntitiesRef *entities) |
| Retrieves the entities object which contains the entity. More...
|
|
A linear dimension entity reference.
- Since
- SketchUp 2017, API 5.0