|
OCCT-Light 0.1
C ABI and C++ veneer for multi-language CAD workflows
|
#include <occtl_surfaces.h>

Public Attributes | |
| uint32_t | struct_version |
| const void * | p_next |
| const occtl_point3_t * | poles |
| size_t | u_pole_count |
| size_t | v_pole_count |
| const double * | weights |
Versioned create-info struct for Bezier surface construction.
Poles are stored row-major: index = u * v_pole_count + v.
| const void* occtl_surface_bezier_create_info::p_next |
Reserved; must be NULL.
| const occtl_point3_t* occtl_surface_bezier_create_info::poles |
[in] Borrows it; row-major: index = u*v_pole_count + v.
| uint32_t occtl_surface_bezier_create_info::struct_version |
Must be OCCTL_SURFACE_BEZIER_CREATE_INFO_VERSION_1.
| size_t occtl_surface_bezier_create_info::u_pole_count |
Number of poles in the U direction; must be >= 1.
| size_t occtl_surface_bezier_create_info::v_pole_count |
Number of poles in the V direction; must be >= 1.
| const double* occtl_surface_bezier_create_info::weights |
[in] Borrows it; NULL = non-rational; same layout as poles.