Cylinder
ABSTRACT
Generates a cylindrical mesh based on specified parameters.
PARAMETERS
center | a 3-vector indicating the center coordinates of the cylinder's base |
radius | a scalar value representing the radius of the cylinder |
height | a scalar value indicating the height of the cylinder |
center | a 3-vector indicating the center coordinates of the cylinder's base |
radius | a scalar value representing the radius of the cylinder |
height | a scalar value indicating the height of the cylinder |
direction | a 3-vector representing the direction or orientation of the cylinder; defaults to the positive z-axis |
sample_count | a numeric value determining the number of samples for mesh refinement; higher values improve mesh quality but increase computation time |
tag | a vector of numbers used as the mesh's tag |
default | an enum branch specifying to use the default coloring scheme, which is to have a white surface |
surface | a 4-vector representing the color of the cylinder's surface |
RETURN
generates a mesh conforming to the specified cylindrical parameters
DECLARATION
func Cylinder([config] {[main] {center, radius, height}, [parameterized] {center, radius, height, direction, sample_count}}, tag, [color] {[default] {}, [color] {surface}})