osgEarth 2.1.1
|
Public Types | |
enum | CapStyle { CAP_DEFAULT, CAP_SQUARE, CAP_ROUND, CAP_FLAT } |
enum | JoinStyle { JOIN_ROUND, JOIN_MITRE, JOIN_BEVEL } |
Public Member Functions | |
BufferParameters (CapStyle capStyle=CAP_DEFAULT, JoinStyle joinStyle=JOIN_ROUND, int cornerSegs=0, bool singleSided=false, bool leftSide=false) | |
Public Attributes | |
CapStyle | _capStyle |
JoinStyle | _joinStyle |
int | _cornerSegs |
bool | _singleSided |
bool | _leftSide |
Options for the Geometry::buffer() operation.
Definition at line 36 of file Geometry.
{ CAP_DEFAULT, CAP_SQUARE, CAP_ROUND, CAP_FLAT };
Definition at line 37 of file Geometry.
{ JOIN_ROUND, JOIN_MITRE, JOIN_BEVEL};
osgEarth::Symbology::BufferParameters::BufferParameters | ( | CapStyle | capStyle = CAP_DEFAULT , |
JoinStyle | joinStyle = JOIN_ROUND , |
||
int | cornerSegs = 0 , |
||
bool | singleSided = false , |
||
bool | leftSide = false |
||
) | [inline] |
Definition at line 38 of file Geometry.
: _capStyle(capStyle), _joinStyle(joinStyle),_cornerSegs(cornerSegs), _singleSided(singleSided), _leftSide(leftSide) { }