Sculptor
v2.0.0
|
BMO - Example Model | Coin - Example Model |
---|---|
Tool in C++ to make sculptures in blocks represented by digital matrices. It allows the user to be able to create a plain text file that contains a sequence of steps to be followed to define properties of a three-dimensional matrix. The properties contain specifications for coordinates in the three-dimensional plane and color, with added transparency, for the elements. The built model can be visualized with the help of visualization software such as GeomView.
Access the documentation for using the Sculptor class here.
OFF
format containing the design conceptualized in the provided file.Code | What it does |
---|---|
dim largura altura profundidade | Defines the dimensions of the sculpture. Ex.: dim 60 40 55 |
putvoxel x y z r g b a | Draw a voxel at position (x ,y ,z ) with color r ,g ,b and a . Ex.: putvoxel 5 5 10 1.0 0.8 0.4 0.3 |
cutvoxel x y z | Deletes a voxel at position (x ,y ,z ) with color r ,g ,b and a . Ex.: cutvoxel 5 5 10 |
putbox xi xf yi yf zi zf r g b a | Draws a parallelepiped delimited by x belonging to (xi , xf ), y belonging to (yi , yf ) and z belonging to (zi , z1 ) with the color r , g , b and a . Ex.: putbox 10 15 12 33 1 8 0.4 0.5 0.8 1 |
cutbox xi xf yi yf zi zf | Deletes a parallelepiped delimited by x belonging to (xi , xf ), y belonging to (yi , yf ) and z belonging to (zi , z1 ). Ex.: cutbox 10 15 12 33 1 8 |
putsphere x_center y_center z_center radius r g b a | Draws a sphere with center at point (x_center , y_center , z_center ), specified radius and color r , g , b and a .Ex.: putsphere 10 10 5 3 1.0 1.0 0.5 0.3 |
cutsphere x_center y_center z_center radius | Deletes a sphere with center at the specified point (x_center , y_center , z_center ), radius . Ex.: cutsphere 10 10 5 3 |
putellipsoid x_center y_center z_center x_radius y_radius z_radius r g b a | Draws an ellipsoid with center at point (x_center , y_center , z_center ), specified radii (x_radius , y_radius , z_radius ) and color r ,g ,b and a .Ex.: putellipsoid 10 10 5 3 4 5 1.0 0.5 0.9 0.4 |
cutellipsoid x_center y_center z_center x_radius y_radius z_radius | Deletes an ellipsoid with center at point (x_center , y_center , z_center ) and specified radius (x_radius , y_radius , z_radius ).Ex.: cutellipsoid 10 10 5 3 4 5 |