API Documentation > Classes > Class CoonsUVDerivatives
Class CoonsUVDerivatives

package com.ptc.pfc.pfcGeometry;

public class
CoonsUVDerivatives
implements
jxobject


Description
A class representing the corner UV mixed derivatives of a Coons patch.
Array provides methods for accessing its elemnts by index(indices) and for modifying its elements. Array object "does not know" its dimentions.
Array Dimensions: [2] [2]
Method Summary
Creates new array object with uninitialized elements.
get (int idx0, int idx1)
Gets an array element with the specified index(indices). If an index is out of range throws exceptioncipXInvalidArrayIndex.
void
set (int idx0, int idx1, Vector3D value)
Assignes a new value to an array element with the specified index(indices). If an index is out of range throws exceptioncipXInvalidArrayIndex.
Method Detail
get
get
(int idx0, int idx1)
Gets an array element with the specified index(indices). If an index is out of range throws exception cipXInvalidArrayIndex.
Parameters:
idx0
First element index.
idx1
Second element index.
Returns:
Element value.
set
void
set
(int idx0, int idx1, Vector3D value)
Assignes a new value to an array element with the specified index(indices). If an index is out of range throws exception cipXInvalidArrayIndex.
Parameters:
idx0
First element index.
idx1
Second element index.
value
New element value.
Returns:
create
create
()
Creates new array object with uninitialized elements.
Returns:
Created array.
Was this helpful?