the main class for STL file I/O.
Type | Visibility | Attributes | Name | Initial | |||
---|---|---|---|---|---|---|---|
integer, | private | :: | n_plates | = | 0 |
number of plates |
|
integer, | private | :: | chunk_size | = | 1000 |
expand |
|
type(plate), | private, | dimension(:), allocatable | :: | plates |
the array of plates |
Generate an ascii STL file.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(stl_file), | intent(in) | :: | me | |||
character(len=*), | intent(in) | :: | filename |
STL file name |
||
character(len=*), | intent(in) | :: | modelname |
the solid name (should not contain spaces) |
||
integer, | intent(out) | :: | istat |
|
||
real(kind=wp), | intent(in), | optional | :: | bounding_box |
scale vertices so that model fits in a box of this size (if <=0, no scaling is done) |
Generate a binary STL file.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(stl_file), | intent(in) | :: | me | |||
character(len=*), | intent(in) | :: | filename |
STL file name |
||
integer, | intent(out) | :: | istat |
|
||
real(kind=wp), | intent(in), | optional | :: | bounding_box |
scale vertices so that model fits in a box of this size (if <=0, no scaling is done) |
Read a binary STL file.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(stl_file), | intent(out) | :: | me | |||
character(len=*), | intent(in) | :: | filename |
STL file name |
||
integer, | intent(out) | :: | istat |
|
Read a text vertex-facet file.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(stl_file), | intent(out) | :: | me | |||
character(len=*), | intent(in) | :: | filename |
Vertex-facet file name |
||
integer, | intent(out) | :: | istat |
|
Destroy an stl_file
.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(stl_file), | intent(inout) | :: | me |
Add a plate to the class.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(stl_file), | intent(inout) | :: | me | |||
real(kind=wp), | intent(in), | dimension(3) | :: | v1 |
first vertex |
|
real(kind=wp), | intent(in), | dimension(3) | :: | v2 |
second vertex |
|
real(kind=wp), | intent(in), | dimension(3) | :: | v3 |
third vertex |
Add a sphere to an STL file.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(stl_file), | intent(inout) | :: | me | |||
real(kind=wp), | intent(in), | dimension(3) | :: | center |
coordinates of sphere center [x,y,z] |
|
real(kind=wp), | intent(in) | :: | radius |
radius of the sphere |
||
integer, | intent(in) | :: | num_lat_points |
number of latitude points (not counting poles) |
||
integer, | intent(in) | :: | num_lon_points |
number of longitude points |
Add a cylinder to an STL file.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(stl_file), | intent(inout) | :: | me | |||
real(kind=wp), | intent(in), | dimension(3) | :: | v1 |
coordinates of initial point |
|
real(kind=wp), | intent(in), | dimension(3) | :: | v2 |
coordinates of final point |
|
real(kind=wp), | intent(in) | :: | radius |
radius of the cylinder |
||
integer, | intent(in) | :: | num_points |
number of point on the circle (>=3) |
||
logical, | intent(in) | :: | initial_cap |
add a cap plate to the initial point |
||
logical, | intent(in) | :: | final_cap |
add a cap plate to the final point |
||
real(kind=wp), | intent(in), | optional, | dimension(3) | :: | initial_normal |
outward normal vector for initial circle |
real(kind=wp), | intent(in), | optional, | dimension(3) | :: | final_normal |
outward normal vector for final circle |
real(kind=wp), | intent(out), | optional, | dimension(3) | :: | final_normal_used |
outward normal vector for final circle actually used |
real(kind=wp), | intent(in), | optional, | dimension(3) | :: | initial_vector |
vector to use to generate the initial circle (x_unit by default) |
real(kind=wp), | intent(out), | optional, | dimension(3) | :: | final_initial_vector_used |
the initial vector used for the final cap to generate the points |
Add a curve to an STL file.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(stl_file), | intent(inout) | :: | me | |||
real(kind=wp), | intent(in), | dimension(:) | :: | x |
x coordinate array |
|
real(kind=wp), | intent(in), | dimension(:) | :: | y |
y coordinate array |
|
real(kind=wp), | intent(in), | dimension(:) | :: | z |
z coordinate array |
|
real(kind=wp), | intent(in) | :: | radius |
radius of the cylinder |
||
integer, | intent(in) | :: | num_points |
number of point on the cylinder perimeter |
||
logical, | intent(in), | optional | :: | initial_cap |
add a cap plate to the initial point |
|
real(kind=wp), | intent(in), | optional, | dimension(3) | :: | initial_normal |
outward normal vector for initial circle |
logical, | intent(in), | optional | :: | final_cap |
add a cap plate to the final point |
|
real(kind=wp), | intent(in), | optional, | dimension(3) | :: | final_normal |
outward normal vector for final circle |
real(kind=wp), | intent(in), | optional, | dimension(3) | :: | initial_vector |
vector to use to generate the first circle (x_unit by default) |
Add a cone to an STL file.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(stl_file), | intent(inout) | :: | me | |||
real(kind=wp), | intent(in), | dimension(3) | :: | v1 |
coordinates of initial point (bottom of the cone) |
|
real(kind=wp), | intent(in), | dimension(3) | :: | v2 |
coordinates of final point (point of the cone) |
|
real(kind=wp), | intent(in) | :: | radius |
radius of the cone (the bottom plate) |
||
integer, | intent(in) | :: | num_points |
number of point on the circle (>=3) |
||
logical, | intent(in) | :: | initial_cap |
add a cap plate to the initial point (bottom) |
||
real(kind=wp), | intent(in), | optional, | dimension(3) | :: | initial_normal |
outward normal vector for initial plate (bottom) |
Add an arrow to an STL file.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(stl_file), | intent(inout) | :: | me | |||
real(kind=wp), | intent(in), | dimension(3) | :: | origin |
coordinates of the origin of the axes |
|
real(kind=wp), | intent(in), | dimension(3) | :: | v |
vector |
|
real(kind=wp), | intent(in) | :: | radius |
radius of the cylinder |
||
integer, | intent(in) | :: | num_points |
number of point on the circle (>=3) |
||
real(kind=wp), | intent(in) | :: | arrowhead_radius_factor |
arrowhead cone radius factor (multiple of cylinder radius) |
||
real(kind=wp), | intent(in) | :: | arrowhead_length_factor |
arrowhead tip length factor (multiple of vector length) |
Add x,y,z axes to an STL file.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(stl_file), | intent(inout) | :: | me | |||
real(kind=wp), | intent(in), | dimension(3) | :: | origin |
coordinates of the origin of the axes |
|
real(kind=wp), | intent(in), | dimension(3) | :: | vx |
x axis vector |
|
real(kind=wp), | intent(in), | dimension(3) | :: | vy |
y axis vector |
|
real(kind=wp), | intent(in), | dimension(3) | :: | vz |
z axis vector |
|
real(kind=wp), | intent(in) | :: | radius |
radius of the cylinder |
||
integer, | intent(in) | :: | num_points |
number of point on the circle (>=3) |
||
real(kind=wp), | intent(in) | :: | arrowhead_radius_factor |
arrowhead cone radius factor (multiple of cylinder radius) |
||
real(kind=wp), | intent(in) | :: | arrowhead_length_factor |
arrowhead tip length factor (multiple of vector length) |
Shift the vertex coordinates so that there are no non-positive components.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(stl_file), | intent(inout) | :: | me |
Set the chunk size in the class.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(stl_file), | intent(inout) | :: | me | |||
integer, | intent(in) | :: | chunk_size |
must be >0 |
Generate the points in a circle, and optionally add it as a plate.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(stl_file), | intent(inout) | :: | me | |||
real(kind=wp), | intent(in), | dimension(3) | :: | c |
center of the circle |
|
real(kind=wp), | intent(in) | :: | radius |
radius of the cylinder |
||
real(kind=wp), | intent(in), | dimension(3) | :: | n |
normal vector to the circle |
|
integer, | intent(in) | :: | nc |
number of points on the circle (must be at least 3) |
||
logical, | intent(in) | :: | add_circle |
to also add to the circle as a plate |
||
real(kind=wp), | intent(out), | dimension(:,:), allocatable | :: | circle |
points on the circle |
|
real(kind=wp), | intent(in), | optional, | dimension(3) | :: | initial_vector |
vector to use to generate the initial circle (x_unit by default) |
logical, | intent(in), | optional | :: | cw |
generate the points in the clockwise direction abound n (default is false) |
Compute the scale factor for the vertices (for writing to a file).
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(stl_file), | intent(in) | :: | me | |||
real(kind=wp), | intent(in), | optional | :: | bounding_box |
scale vertices so that model fits in a box of this size (if <=0, no scaling is done) |
scale factor
type,public :: stl_file !! the main class for STL file I/O. private integer :: n_plates = 0 !! number of plates integer :: chunk_size = 1000 !! expand `plates` array in chunks of this size type(plate),dimension(:),allocatable :: plates !! the array of plates contains private procedure,public :: write_ascii_stl_file procedure,public :: write_binary_stl_file procedure,public :: read => read_binary_stl_file procedure,public :: read_tab_file procedure,public :: destroy => destroy_stl_file procedure,public :: add_plate procedure,public :: add_sphere procedure,public :: add_cylinder procedure,public :: add_curve procedure,public :: add_cone procedure,public :: add_arrow procedure,public :: add_axes procedure,public :: shift_mesh procedure,public :: set_chunk_size procedure :: generate_circle procedure :: compute_vertex_scale end type stl_file