ccGetCurvePoint
ccGetCurvePoint(g_curve n_t) =>l_xy
Description
(Virtuoso Photonics Option) Returns a point on a curve or a polyCurve segment at the specified value of the curve function parameter.
Arguments
|
ID of a ccCurve object or a segment of a ccPolyCurve object in the form: list( |
Value Returned
Example
c=ccCreateCurve("t" "t^2" 0:1)
> cc@0xe74d47d9
ccGetCurvePoint(c 0.5)
> (0.5 0.25)
ccGetCurvePoint(list(c list(1:1 180)) 0.5)
> (0.5 0.75)
Related Topics
Curvy Core Mathematical Object Attribute Query Functions
Return to top