#include <opennurbs_offsetsurface.h>
|
| ON_OffsetSurfaceFunction () |
|
| ~ON_OffsetSurfaceFunction () |
|
const ON_Surface * | BaseSurface () const |
|
void | Destroy () |
|
double | DistanceAt (double s, double t) const |
|
bool | EvaluateDistance (double s, double t, int num_der, double *value) const |
|
double | OffsetDistance (int i) const |
|
int | OffsetPointCount () const |
|
ON_2dPoint | OffsetSurfaceParameter (int i) const |
|
ON_3dPoint | PointAt (double s, double t) const |
|
bool | SetBaseSurface (const ON_Surface *srf) |
|
bool | SetDistance (int index, double distance) |
|
bool | SetOffsetPoint (double s, double t, double distance, double radius=0.0) |
|
bool | SetPoint (int index, double s, double t) |
|
bool | SetSideTangency (int side, bool bEnable) |
|
bool | SideTangency (int side) const |
|
◆ ON_OffsetSurfaceFunction()
ON_OffsetSurfaceFunction::ON_OffsetSurfaceFunction |
( |
| ) |
|
◆ ~ON_OffsetSurfaceFunction()
ON_OffsetSurfaceFunction::~ON_OffsetSurfaceFunction |
( |
| ) |
|
◆ BaseSurface()
const ON_Surface* ON_OffsetSurfaceFunction::BaseSurface |
( |
| ) |
const |
◆ Destroy()
void ON_OffsetSurfaceFunction::Destroy |
( |
| ) |
|
Description: Resets this class if you want to reuse it.
◆ DistanceAt()
double ON_OffsetSurfaceFunction::DistanceAt |
( |
double |
s, |
|
|
double |
t |
|
) |
| const |
Description: Value of the offset distance at any surface parameter. Parameters: s - [in] t - [in] (s,t) is a base surface evaluation parameter Returns: offset distance at the surface parameter
◆ EvaluateDistance()
bool ON_OffsetSurfaceFunction::EvaluateDistance |
( |
double |
s, |
|
|
double |
t, |
|
|
int |
num_der, |
|
|
double * |
value |
|
) |
| const |
Description: Value of the offset distance at any surface parameter. Parameters: s - [in] t - [in] (s,t) is a base surface evaluation parameter num_der - [in] number of derivatives value - [out] value and derivatives of distance function value[0] = distance, value[1] = 1rst derivative, value[2] = 2nd derivative, ... Returns: True if successful
◆ OffsetDistance()
double ON_OffsetSurfaceFunction::OffsetDistance |
( |
int |
i | ) |
const |
◆ OffsetPointCount()
int ON_OffsetSurfaceFunction::OffsetPointCount |
( |
| ) |
const |
◆ OffsetSurfaceParameter()
ON_2dPoint ON_OffsetSurfaceFunction::OffsetSurfaceParameter |
( |
int |
i | ) |
const |
◆ PointAt()
ON_3dPoint ON_OffsetSurfaceFunction::PointAt |
( |
double |
s, |
|
|
double |
t |
|
) |
| const |
Description: Value of the offset function at any surface parameter. Parameters: s - [in] t - [in] (s,t) is a base surface evaluation parameter Returns: Point on the offset surface.
◆ SetBaseSurface()
bool ON_OffsetSurfaceFunction::SetBaseSurface |
( |
const ON_Surface * |
srf | ) |
|
Description: Sets base surface for the offset function. Parameters: srf - [in] pointer to the base surface. This surface must remain valid while the ON_OffsetSurfaceFunction class is used. Returns: True if successful.
◆ SetDistance()
bool ON_OffsetSurfaceFunction::SetDistance |
( |
int |
index, |
|
|
double |
distance |
|
) |
| |
Description: Set the offset distance for an existing point Parameters: index - [in] index of the point to set distance - [in] new distance
◆ SetOffsetPoint()
bool ON_OffsetSurfaceFunction::SetOffsetPoint |
( |
double |
s, |
|
|
double |
t, |
|
|
double |
distance, |
|
|
double |
radius = 0.0 |
|
) |
| |
Description: Sets the offset distance at a point. Call this function once for each point where the user specifies an offset. Parameters: s - [in] t - [in] (s,t) is a base surface evaluation parameter distance - [in] distance is the offset distance. radius - [in] if radius>0, then this value will be the the approximate radius of the offset "bump".
◆ SetPoint()
bool ON_OffsetSurfaceFunction::SetPoint |
( |
int |
index, |
|
|
double |
s, |
|
|
double |
t |
|
) |
| |
Description: Sets the surface parameters of an existing offset point. Parameters: index - [in] index of the point to set s - [in] t - [in] (s,t) is a base surface evaluation parameter
◆ SetSideTangency()
bool ON_OffsetSurfaceFunction::SetSideTangency |
( |
int |
side, |
|
|
bool |
bEnable |
|
) |
| |
Description: Use set SetSideTangency if you want the offset surface and base surface to have the same unit normals along a side of the surfaces's parameter spaces. Parameters: side - [in] 0 = south side 1 = east side 2 = north side 3 = west side bEnable - [in] true to enable tangency, false to disable tangency Returns: True if successful.
◆ SideTangency()
bool ON_OffsetSurfaceFunction::SideTangency |
( |
int |
side | ) |
const |
Parameters: side - [in] 0 = south side 1 = east side 2 = north side 3 = west side Returns: True if side tangency is enabled.
◆ ON_OffsetSurface