-
Notifications
You must be signed in to change notification settings - Fork 4
base_geom
Cory edited this page Jul 6, 2023
·
1 revision
The base_geom_mod
module is contained within base_geom.f90
. It contains types for defining basic geometric objects:
- vertices (
type vertex
) - edges (
type edge
) - evaluation point (
type eval_point_geom
) - control point (
type control_point
)
These are all very basic types and have limited bound procedures. They are mostly container types used for storing information.
Any geometric types not dependent upon any other types (or only those within this module) should be implemented here.