API Documentation > Interfaces > Interface CurveXYZData
Interface CurveXYZData

package com.ptc.pfc.pfcGeometry;

public interface
CurveXYZData
extends
jxobject


Description
Stores the results of an edge evaluation
User Guide References:
Method Summary
/*cipOptional*/ Vector3D
Get method for attribute "Derivative1"
The first partial derivaties of X, Y, and Z, with respect tot
/*cipOptional*/ Vector3D
Get method for attribute "Derivative2"
The second partial derivaties of X, Y, and Z, with respect tot
double
Get method for attribute "Param"
The independent parameter,t
Get method for attribute "Point"
The X, Y, and Z coordinates of the point, with respect to the model coordinates
void
SetDerivative1 ( /*cipOptional*/ Vector3D value)
Set method for attribute "Derivative1"
The first partial derivaties of X, Y, and Z, with respect tot
void
SetDerivative2 ( /*cipOptional*/ Vector3D value)
Set method for attribute "Derivative2"
The second partial derivaties of X, Y, and Z, with respect tot
void
SetParam (double value)
Set method for attribute "Param"
The independent parameter,t
void
Set method for attribute "Point"
The X, Y, and Z coordinates of the point, with respect to the model coordinates
Method Detail
GetParam
double
GetParam
()
SetParam
void
SetParam
(double value)
The independent parameter, t
GetPoint
GetPoint
()
SetPoint
void
SetPoint
(Point3D value)
The X, Y, and Z coordinates of the point, with respect to the model coordinates
GetDerivative1
/*cipOptional*/ Vector3D
GetDerivative1
()
SetDerivative1
void
SetDerivative1
( /*cipOptional*/ Vector3D value)
The first partial derivaties of X, Y, and Z, with respect to t
GetDerivative2
/*cipOptional*/ Vector3D
GetDerivative2
()
SetDerivative2
void
SetDerivative2
( /*cipOptional*/ Vector3D value)
The second partial derivaties of X, Y, and Z, with respect to t
Was this helpful?