piecewise-bezier-surface-generator ~master (2022-03-07T21:06:02.8559876)
Dub
Repo
MeshPoint
beziermeshmaker
datastructures
meshpoint
Undocumented in source.
class
MeshPoint {
static immutable
int
P_TYPE_ORIGINAL
;
static immutable
int
P_TYPE_CENTROID
;
static immutable
int
M_TYPE
;
static
float
ALPHA_BLEND_DEFAULT
;
static
float
BETA_BLEND_DEFAULT
;
QuadCell
[]
neighbors
;
vec3
pt
;
int
ptType
;
float
alphaBlend
;
float
betaBlend
;
this
(vec3 pt, int type);
this
(vec3 pt, int type, float alphaBlend, float betaBlend);
int
getIndex
(QuadCell cell);
}
Constructors
this
this
(vec3 pt, int type)
Undocumented in source.
this
this
(vec3 pt, int type, float alphaBlend, float betaBlend)
Undocumented in source.
Members
Functions
getIndex
int
getIndex
(QuadCell cell)
Undocumented in source. Be warned that the author may not have intended to support it.
Static variables
ALPHA_BLEND_DEFAULT
float
ALPHA_BLEND_DEFAULT
;
Undocumented in source.
BETA_BLEND_DEFAULT
float
BETA_BLEND_DEFAULT
;
Undocumented in source.
M_TYPE
int
M_TYPE
;
Undocumented in source.
P_TYPE_CENTROID
int
P_TYPE_CENTROID
;
Undocumented in source.
P_TYPE_ORIGINAL
int
P_TYPE_ORIGINAL
;
Undocumented in source.
Variables
alphaBlend
float
alphaBlend
;
betaBlend
float
betaBlend
;
Undocumented in source.
neighbors
QuadCell
[]
neighbors
;
Undocumented in source.
pt
vec3
pt
;
Undocumented in source.
ptType
int
ptType
;
Undocumented in source.
Meta
Source
See Implementation
beziermeshmaker
datastructures
meshpoint
classes
MeshPoint