gen_sphere_object_model_3d_center🔗
Short description🔗
gen_sphere_object_model_3d_center — Create a 3D object model that represents a sphere from x,y,z coordinates.
Signature🔗
gen_sphere_object_model_3d_center( point3d.x X, point3d.y Y, point3d.z Z, number Radius, out object_model_3d ObjectModel3D )
Description🔗
gen_sphere_object_model_3d_center creates a sphere-shaped 3D
primitive, i.e., a 3D object model that represents a sphere. A sphere
is defined by its center given in X, Y, and
Z, and its radius given in Radius.
The handle of the 3D object model is returned by the
parameter ObjectModel3D.
Parameter Broadcasting🔗
This operator supports parameter broadcasting. This means that each parameter can be given as a tuple of length 1 or N. Parameters with tuple length 1 will be repeated internally such that the number of created items is always N.
Execution information🔗
Execution information
-
Multithreading type: reentrant (runs in parallel with non-exclusive operators).
-
Multithreading scope: global (may be called from any thread).
-
Processed without parallelization.
This operator returns a handle. Note that the state of an instance of this handle type may be changed by specific operators even though the handle is used as an input parameter by those operators.
Parameters🔗
X (input_control) point3d.x(-array) → (real / integer)
The x-coordinate of the center point of the sphere.
Y (input_control) point3d.y(-array) → (real / integer)
The y-coordinate of the center point of the sphere.
Z (input_control) point3d.z(-array) → (real / integer)
The z-coordinate of the center point of the sphere.
Radius (input_control) number(-array) → (real)
The radius of the sphere.
ObjectModel3D (output_control) object_model_3d(-array) → (handle)
Handle of the resulting 3D object model.
Result🔗
gen_sphere_object_model_3d_center returns 2 (H_MSG_TRUE) if all parameters
are correct. If necessary, an exception is raised.
Combinations with other operators🔗
Combinations
Possible predecessors
smallest_sphere_object_model_3d
Possible successors
get_object_model_3d_params, sample_object_model_3d, clear_object_model_3d
Alternatives
See also
gen_cylinder_object_model_3d, gen_plane_object_model_3d, gen_box_object_model_3d
Module🔗
3D Metrology