MFEM  v4.5.1
Finite element discretization library
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Pages
Public Member Functions | Protected Member Functions | Protected Attributes | Friends | List of all members
mfem::NURBSExtension Class Reference

#include <nurbs.hpp>

Inheritance diagram for mfem::NURBSExtension:
[legend]
Collaboration diagram for mfem::NURBSExtension:
[legend]

Public Member Functions

 NURBSExtension (const NURBSExtension &orig)
 Copy constructor: deep copy. More...
 
 NURBSExtension (std::istream &input)
 Read-in a NURBSExtension. More...
 
 NURBSExtension (NURBSExtension *parent, int newOrder)
 Create a NURBSExtension with elevated order by repeating the endpoints of the knot vectors and using uniform weights of 1. More...
 
 NURBSExtension (NURBSExtension *parent, const Array< int > &newOrders)
 Create a NURBSExtension with elevated knot vector orders (by repeating the endpoints of the knot vectors and using uniform weights of 1) as given by the array newOrders. More...
 
 NURBSExtension (Mesh *mesh_array[], int num_pieces)
 Construct a NURBSExtension by merging a partitioned NURBS mesh. More...
 
NURBSExtensionoperator= (const NURBSExtension &)=delete
 Copy assignment not supported. More...
 
void ConnectBoundaries (Array< int > &master, Array< int > &slave)
 
const Array< int > & GetMaster () const
 
Array< int > & GetMaster ()
 
const Array< int > & GetSlave () const
 
Array< int > & GetSlave ()
 
void MergeGridFunctions (GridFunction *gf_array[], int num_pieces, GridFunction &merged)
 
virtual ~NURBSExtension ()
 Destroy a NURBSExtension. More...
 
void Print (std::ostream &out) const
 
void PrintCharacteristics (std::ostream &out) const
 
void PrintFunctions (const char *filename, int samples=11) const
 
int Dimension () const
 
int GetNP () const
 
int GetNBP () const
 
const Array< int > & GetOrders () const
 Read-only access to the orders of all knot vectors. More...
 
int GetOrder () const
 If all orders are identical, return that number. Otherwise, return NURBSFECollection::VariableOrder. More...
 
int GetNKV () const
 
int GetGNV () const
 
int GetNV () const
 
int GetGNE () const
 
int GetNE () const
 
int GetGNBE () const
 
int GetNBE () const
 
int GetNTotalDof () const
 
int GetNDof () const
 
const KnotVectorGetKnotVector (int i) const
 
void GetElementTopo (Array< Element * > &elements) const
 
void GetBdrElementTopo (Array< Element * > &boundary) const
 
bool HavePatches () const
 
TableGetElementDofTable ()
 
TableGetBdrElementDofTable ()
 
void GetVertexLocalToGlobal (Array< int > &lvert_vert)
 
void GetElementLocalToGlobal (Array< int > &lelem_elem)
 
void LoadFE (int i, const FiniteElement *FE) const
 
void LoadBE (int i, const FiniteElement *BE) const
 
const VectorGetWeights () const
 
VectorGetWeights ()
 
void ConvertToPatches (const Vector &Nodes)
 
void SetKnotsFromPatches ()
 
void SetCoordsFromPatches (Vector &Nodes)
 
void LoadSolution (std::istream &input, GridFunction &sol) const
 
void PrintSolution (const GridFunction &sol, std::ostream &out) const
 
void DegreeElevate (int rel_degree, int degree=16)
 
void UniformRefinement ()
 
void KnotInsert (Array< KnotVector * > &kv)
 
void KnotInsert (Array< Vector * > &kv)
 

Protected Member Functions

int KnotInd (int edge) const
 
KnotVectorKnotVec (int edge)
 
const KnotVectorKnotVec (int edge) const
 
const KnotVectorKnotVec (int edge, int oedge, int *okv) const
 
void CheckPatches ()
 
void CheckBdrPatches ()
 
void GetPatchKnotVectors (int p, Array< KnotVector * > &kv)
 
void GetPatchKnotVectors (int p, Array< const KnotVector * > &kv) const
 
void GetBdrPatchKnotVectors (int p, Array< KnotVector * > &kv)
 
void GetBdrPatchKnotVectors (int p, Array< const KnotVector * > &kv) const
 
void SetOrderFromOrders ()
 
void SetOrdersFromKnotVectors ()
 
void InitDofMap ()
 
void ConnectBoundaries ()
 
void ConnectBoundaries2D (int bnd0, int bnd1)
 
void ConnectBoundaries3D (int bnd0, int bnd1)
 
int DofMap (int dof) const
 
void GenerateOffsets ()
 
void CountElements ()
 
void CountBdrElements ()
 
void Get2DElementTopo (Array< Element * > &elements) const
 
void Get3DElementTopo (Array< Element * > &elements) const
 
void Get2DBdrElementTopo (Array< Element * > &boundary) const
 
void Get3DBdrElementTopo (Array< Element * > &boundary) const
 
void GenerateElementDofTable ()
 
void Generate2DElementDofTable ()
 
void Generate3DElementDofTable ()
 
void GenerateBdrElementDofTable ()
 
void Generate2DBdrElementDofTable ()
 
void Generate3DBdrElementDofTable ()
 
void GetPatchNets (const Vector &Nodes, int vdim)
 
void Get2DPatchNets (const Vector &Nodes, int vdim)
 
void Get3DPatchNets (const Vector &Nodes, int vdim)
 
void SetSolutionVector (Vector &Nodes, int vdim)
 
void Set2DSolutionVector (Vector &Nodes, int vdim)
 
void Set3DSolutionVector (Vector &Nodes, int vdim)
 
void GenerateActiveVertices ()
 
void GenerateActiveBdrElems ()
 
void MergeWeights (Mesh *mesh_array[], int num_pieces)
 
 NURBSExtension ()
 

Protected Attributes

int mOrder
 
Array< int > mOrders
 
int NumOfKnotVectors
 
int NumOfVertices
 
int NumOfElements
 
int NumOfBdrElements
 
int NumOfDofs
 
int NumOfActiveVertices
 
int NumOfActiveElems
 
int NumOfActiveBdrElems
 
int NumOfActiveDofs
 
Array< int > activeVert
 
Array< bool > activeElem
 
Array< bool > activeBdrElem
 
Array< int > activeDof
 
MeshpatchTopo
 
int own_topo
 
Array< int > edge_to_knot
 
Array< KnotVector * > knotVectors
 
Vector weights
 
Array< int > d_to_d
 
Array< int > master
 
Array< int > slave
 
Array< int > v_meshOffsets
 
Array< int > e_meshOffsets
 
Array< int > f_meshOffsets
 
Array< int > p_meshOffsets
 
Array< int > v_spaceOffsets
 
Array< int > e_spaceOffsets
 
Array< int > f_spaceOffsets
 
Array< int > p_spaceOffsets
 
Tableel_dof
 
Tablebel_dof
 
Array< int > el_to_patch
 
Array< int > bel_to_patch
 
Array2D< int > el_to_IJK
 
Array2D< int > bel_to_IJK
 
Array< NURBSPatch * > patches
 

Friends

class ParNURBSExtension
 
class NURBSPatchMap
 

Detailed Description

Definition at line 166 of file nurbs.hpp.

Constructor & Destructor Documentation

mfem::NURBSExtension::NURBSExtension ( )
inlineprotected

Definition at line 303 of file nurbs.hpp.

mfem::NURBSExtension::NURBSExtension ( const NURBSExtension orig)

Copy constructor: deep copy.

Definition at line 1321 of file nurbs.cpp.

mfem::NURBSExtension::NURBSExtension ( std::istream &  input)

Read-in a NURBSExtension.

Definition at line 1373 of file nurbs.cpp.

mfem::NURBSExtension::NURBSExtension ( NURBSExtension parent,
int  newOrder 
)

Create a NURBSExtension with elevated order by repeating the endpoints of the knot vectors and using uniform weights of 1.

If a knot vector in parent already has order greater than or equal to newOrder, it will be used unmodified.

Definition at line 1528 of file nurbs.cpp.

mfem::NURBSExtension::NURBSExtension ( NURBSExtension parent,
const Array< int > &  newOrders 
)

Create a NURBSExtension with elevated knot vector orders (by repeating the endpoints of the knot vectors and using uniform weights of 1) as given by the array newOrders.

If a knot vector in parent already has order greater than or equal to the corresponding entry in newOrder, it will be used unmodified.

Definition at line 1579 of file nurbs.cpp.

mfem::NURBSExtension::NURBSExtension ( Mesh mesh_array[],
int  num_pieces 
)

Construct a NURBSExtension by merging a partitioned NURBS mesh.

Definition at line 1633 of file nurbs.cpp.

mfem::NURBSExtension::~NURBSExtension ( )
virtual

Destroy a NURBSExtension.

Definition at line 1677 of file nurbs.cpp.

Member Function Documentation

void mfem::NURBSExtension::CheckBdrPatches ( )
protected

Definition at line 2186 of file nurbs.cpp.

void mfem::NURBSExtension::CheckPatches ( )
protected

Definition at line 2140 of file nurbs.cpp.

void mfem::NURBSExtension::ConnectBoundaries ( )
protected

Definition at line 1793 of file nurbs.cpp.

void mfem::NURBSExtension::ConnectBoundaries ( Array< int > &  master,
Array< int > &  slave 
)

Definition at line 1786 of file nurbs.cpp.

void mfem::NURBSExtension::ConnectBoundaries2D ( int  bnd0,
int  bnd1 
)
protected

Definition at line 1824 of file nurbs.cpp.

void mfem::NURBSExtension::ConnectBoundaries3D ( int  bnd0,
int  bnd1 
)
protected

Definition at line 1900 of file nurbs.cpp.

void mfem::NURBSExtension::ConvertToPatches ( const Vector Nodes)

Definition at line 2955 of file nurbs.cpp.

void mfem::NURBSExtension::CountBdrElements ( )
protected

Definition at line 2425 of file nurbs.cpp.

void mfem::NURBSExtension::CountElements ( )
protected

Definition at line 2405 of file nurbs.cpp.

void mfem::NURBSExtension::DegreeElevate ( int  rel_degree,
int  degree = 16 
)

Definition at line 3089 of file nurbs.cpp.

int mfem::NURBSExtension::Dimension ( ) const
inline

Definition at line 345 of file nurbs.hpp.

int mfem::NURBSExtension::DofMap ( int  dof) const
inlineprotected

Definition at line 243 of file nurbs.hpp.

void mfem::NURBSExtension::Generate2DBdrElementDofTable ( )
protected

Definition at line 2792 of file nurbs.cpp.

void mfem::NURBSExtension::Generate2DElementDofTable ( )
protected

Definition at line 2653 of file nurbs.cpp.

void mfem::NURBSExtension::Generate3DBdrElementDofTable ( )
protected

Definition at line 2835 of file nurbs.cpp.

void mfem::NURBSExtension::Generate3DElementDofTable ( )
protected

Definition at line 2707 of file nurbs.cpp.

void mfem::NURBSExtension::GenerateActiveBdrElems ( )
protected

Definition at line 2068 of file nurbs.cpp.

void mfem::NURBSExtension::GenerateActiveVertices ( )
protected

Definition at line 2001 of file nurbs.cpp.

void mfem::NURBSExtension::GenerateBdrElementDofTable ( )
protected

Definition at line 2773 of file nurbs.cpp.

void mfem::NURBSExtension::GenerateElementDofTable ( )
protected

Definition at line 2623 of file nurbs.cpp.

void mfem::NURBSExtension::GenerateOffsets ( )
protected

Definition at line 2318 of file nurbs.cpp.

void mfem::NURBSExtension::Get2DBdrElementTopo ( Array< Element * > &  boundary) const
protected

Definition at line 2554 of file nurbs.cpp.

void mfem::NURBSExtension::Get2DElementTopo ( Array< Element * > &  elements) const
protected

Definition at line 2459 of file nurbs.cpp.

void mfem::NURBSExtension::Get2DPatchNets ( const Vector Nodes,
int  vdim 
)
protected

Definition at line 3180 of file nurbs.cpp.

void mfem::NURBSExtension::Get3DBdrElementTopo ( Array< Element * > &  boundary) const
protected

Definition at line 2585 of file nurbs.cpp.

void mfem::NURBSExtension::Get3DElementTopo ( Array< Element * > &  elements) const
protected

Definition at line 2495 of file nurbs.cpp.

void mfem::NURBSExtension::Get3DPatchNets ( const Vector Nodes,
int  vdim 
)
protected

Definition at line 3207 of file nurbs.cpp.

Table* mfem::NURBSExtension::GetBdrElementDofTable ( )
inline

Definition at line 377 of file nurbs.hpp.

void mfem::NURBSExtension::GetBdrElementTopo ( Array< Element * > &  boundary) const

Definition at line 2540 of file nurbs.cpp.

void mfem::NURBSExtension::GetBdrPatchKnotVectors ( int  p,
Array< KnotVector * > &  kv 
)
protected

Definition at line 2255 of file nurbs.cpp.

void mfem::NURBSExtension::GetBdrPatchKnotVectors ( int  p,
Array< const KnotVector * > &  kv 
) const
protected

Definition at line 2274 of file nurbs.cpp.

Table* mfem::NURBSExtension::GetElementDofTable ( )
inline

Definition at line 376 of file nurbs.hpp.

void mfem::NURBSExtension::GetElementLocalToGlobal ( Array< int > &  lelem_elem)

Definition at line 2903 of file nurbs.cpp.

void mfem::NURBSExtension::GetElementTopo ( Array< Element * > &  elements) const

Definition at line 2445 of file nurbs.cpp.

int mfem::NURBSExtension::GetGNBE ( ) const
inline

Definition at line 361 of file nurbs.hpp.

int mfem::NURBSExtension::GetGNE ( ) const
inline

Definition at line 359 of file nurbs.hpp.

int mfem::NURBSExtension::GetGNV ( ) const
inline

Definition at line 357 of file nurbs.hpp.

const KnotVector* mfem::NURBSExtension::GetKnotVector ( int  i) const
inline

Definition at line 368 of file nurbs.hpp.

const Array<int>& mfem::NURBSExtension::GetMaster ( ) const
inline

Definition at line 329 of file nurbs.hpp.

Array<int>& mfem::NURBSExtension::GetMaster ( )
inline

Definition at line 330 of file nurbs.hpp.

int mfem::NURBSExtension::GetNBE ( ) const
inline

Definition at line 362 of file nurbs.hpp.

int mfem::NURBSExtension::GetNBP ( ) const
inline

Definition at line 347 of file nurbs.hpp.

int mfem::NURBSExtension::GetNDof ( ) const
inline

Definition at line 365 of file nurbs.hpp.

int mfem::NURBSExtension::GetNE ( ) const
inline

Definition at line 360 of file nurbs.hpp.

int mfem::NURBSExtension::GetNKV ( ) const
inline

Definition at line 355 of file nurbs.hpp.

int mfem::NURBSExtension::GetNP ( ) const
inline

Definition at line 346 of file nurbs.hpp.

int mfem::NURBSExtension::GetNTotalDof ( ) const
inline

Definition at line 364 of file nurbs.hpp.

int mfem::NURBSExtension::GetNV ( ) const
inline

Definition at line 358 of file nurbs.hpp.

int mfem::NURBSExtension::GetOrder ( ) const
inline

If all orders are identical, return that number. Otherwise, return NURBSFECollection::VariableOrder.

Definition at line 353 of file nurbs.hpp.

const Array<int>& mfem::NURBSExtension::GetOrders ( ) const
inline

Read-only access to the orders of all knot vectors.

Definition at line 350 of file nurbs.hpp.

void mfem::NURBSExtension::GetPatchKnotVectors ( int  p,
Array< KnotVector * > &  kv 
)
protected

Definition at line 2214 of file nurbs.cpp.

void mfem::NURBSExtension::GetPatchKnotVectors ( int  p,
Array< const KnotVector * > &  kv 
) const
protected

Definition at line 2234 of file nurbs.cpp.

void mfem::NURBSExtension::GetPatchNets ( const Vector Nodes,
int  vdim 
)
protected

Definition at line 3168 of file nurbs.cpp.

const Array<int>& mfem::NURBSExtension::GetSlave ( ) const
inline

Definition at line 331 of file nurbs.hpp.

Array<int>& mfem::NURBSExtension::GetSlave ( )
inline

Definition at line 332 of file nurbs.hpp.

void mfem::NURBSExtension::GetVertexLocalToGlobal ( Array< int > &  lvert_vert)

Definition at line 2893 of file nurbs.cpp.

const Vector& mfem::NURBSExtension::GetWeights ( ) const
inline

Definition at line 386 of file nurbs.hpp.

Vector& mfem::NURBSExtension::GetWeights ( )
inline

Definition at line 387 of file nurbs.hpp.

bool mfem::NURBSExtension::HavePatches ( ) const
inline

Definition at line 374 of file nurbs.hpp.

void mfem::NURBSExtension::InitDofMap ( )
protected

Definition at line 1779 of file nurbs.cpp.

int mfem::NURBSExtension::KnotInd ( int  edge) const
inlineprotected

Definition at line 551 of file nurbs.hpp.

void mfem::NURBSExtension::KnotInsert ( Array< KnotVector * > &  kv)

Definition at line 3113 of file nurbs.cpp.

void mfem::NURBSExtension::KnotInsert ( Array< Vector * > &  kv)

Definition at line 3140 of file nurbs.cpp.

KnotVector * mfem::NURBSExtension::KnotVec ( int  edge)
inlineprotected

Definition at line 557 of file nurbs.hpp.

const KnotVector * mfem::NURBSExtension::KnotVec ( int  edge) const
inlineprotected

Definition at line 562 of file nurbs.hpp.

const KnotVector * mfem::NURBSExtension::KnotVec ( int  edge,
int  oedge,
int *  okv 
) const
inlineprotected

Definition at line 567 of file nurbs.hpp.

void mfem::NURBSExtension::LoadBE ( int  i,
const FiniteElement BE 
) const

Definition at line 2934 of file nurbs.cpp.

void mfem::NURBSExtension::LoadFE ( int  i,
const FiniteElement FE 
) const

Definition at line 2913 of file nurbs.cpp.

void mfem::NURBSExtension::LoadSolution ( std::istream &  input,
GridFunction sol 
) const

Definition at line 3014 of file nurbs.cpp.

void mfem::NURBSExtension::MergeGridFunctions ( GridFunction gf_array[],
int  num_pieces,
GridFunction merged 
)

Definition at line 2115 of file nurbs.cpp.

void mfem::NURBSExtension::MergeWeights ( Mesh mesh_array[],
int  num_pieces 
)
protected

Definition at line 2090 of file nurbs.cpp.

NURBSExtension& mfem::NURBSExtension::operator= ( const NURBSExtension )
delete

Copy assignment not supported.

void mfem::NURBSExtension::Print ( std::ostream &  out) const

Definition at line 1701 of file nurbs.cpp.

void mfem::NURBSExtension::PrintCharacteristics ( std::ostream &  out) const

Definition at line 1736 of file nurbs.cpp.

void mfem::NURBSExtension::PrintFunctions ( const char *  filename,
int  samples = 11 
) const

Definition at line 1766 of file nurbs.cpp.

void mfem::NURBSExtension::PrintSolution ( const GridFunction sol,
std::ostream &  out 
) const

Definition at line 3051 of file nurbs.cpp.

void mfem::NURBSExtension::Set2DSolutionVector ( Vector Nodes,
int  vdim 
)
protected

Definition at line 3249 of file nurbs.cpp.

void mfem::NURBSExtension::Set3DSolutionVector ( Vector Nodes,
int  vdim 
)
protected

Definition at line 3277 of file nurbs.cpp.

void mfem::NURBSExtension::SetCoordsFromPatches ( Vector Nodes)

Definition at line 2966 of file nurbs.cpp.

void mfem::NURBSExtension::SetKnotsFromPatches ( )

Definition at line 2974 of file nurbs.cpp.

void mfem::NURBSExtension::SetOrderFromOrders ( )
protected

Definition at line 2294 of file nurbs.cpp.

void mfem::NURBSExtension::SetOrdersFromKnotVectors ( )
protected

Definition at line 2308 of file nurbs.cpp.

void mfem::NURBSExtension::SetSolutionVector ( Vector Nodes,
int  vdim 
)
protected

Definition at line 3237 of file nurbs.cpp.

void mfem::NURBSExtension::UniformRefinement ( )

Definition at line 3105 of file nurbs.cpp.

Friends And Related Function Documentation

friend class NURBSPatchMap
friend

Definition at line 171 of file nurbs.hpp.

friend class ParNURBSExtension
friend

Definition at line 169 of file nurbs.hpp.

Member Data Documentation

Array<bool> mfem::NURBSExtension::activeBdrElem
protected

Definition at line 185 of file nurbs.hpp.

Array<int> mfem::NURBSExtension::activeDof
protected

Definition at line 186 of file nurbs.hpp.

Array<bool> mfem::NURBSExtension::activeElem
protected

Definition at line 184 of file nurbs.hpp.

Array<int> mfem::NURBSExtension::activeVert
protected

Definition at line 183 of file nurbs.hpp.

Table * mfem::NURBSExtension::bel_dof
protected

Definition at line 213 of file nurbs.hpp.

Array2D<int> mfem::NURBSExtension::bel_to_IJK
protected

Definition at line 218 of file nurbs.hpp.

Array<int> mfem::NURBSExtension::bel_to_patch
protected

Definition at line 216 of file nurbs.hpp.

Array<int> mfem::NURBSExtension::d_to_d
protected

Definition at line 197 of file nurbs.hpp.

Array<int> mfem::NURBSExtension::e_meshOffsets
protected

Definition at line 203 of file nurbs.hpp.

Array<int> mfem::NURBSExtension::e_spaceOffsets
protected

Definition at line 209 of file nurbs.hpp.

Array<int> mfem::NURBSExtension::edge_to_knot
protected

Definition at line 190 of file nurbs.hpp.

Table* mfem::NURBSExtension::el_dof
protected

Definition at line 213 of file nurbs.hpp.

Array2D<int> mfem::NURBSExtension::el_to_IJK
protected

Definition at line 217 of file nurbs.hpp.

Array<int> mfem::NURBSExtension::el_to_patch
protected

Definition at line 215 of file nurbs.hpp.

Array<int> mfem::NURBSExtension::f_meshOffsets
protected

Definition at line 204 of file nurbs.hpp.

Array<int> mfem::NURBSExtension::f_spaceOffsets
protected

Definition at line 210 of file nurbs.hpp.

Array<KnotVector *> mfem::NURBSExtension::knotVectors
protected

Definition at line 191 of file nurbs.hpp.

Array<int> mfem::NURBSExtension::master
protected

Definition at line 198 of file nurbs.hpp.

int mfem::NURBSExtension::mOrder
protected

Definition at line 174 of file nurbs.hpp.

Array<int> mfem::NURBSExtension::mOrders
protected

Definition at line 175 of file nurbs.hpp.

int mfem::NURBSExtension::NumOfActiveBdrElems
protected

Definition at line 180 of file nurbs.hpp.

int mfem::NURBSExtension::NumOfActiveDofs
protected

Definition at line 181 of file nurbs.hpp.

int mfem::NURBSExtension::NumOfActiveElems
protected

Definition at line 180 of file nurbs.hpp.

int mfem::NURBSExtension::NumOfActiveVertices
protected

Definition at line 180 of file nurbs.hpp.

int mfem::NURBSExtension::NumOfBdrElements
protected

Definition at line 178 of file nurbs.hpp.

int mfem::NURBSExtension::NumOfDofs
protected

Definition at line 178 of file nurbs.hpp.

int mfem::NURBSExtension::NumOfElements
protected

Definition at line 178 of file nurbs.hpp.

int mfem::NURBSExtension::NumOfKnotVectors
protected

Definition at line 176 of file nurbs.hpp.

int mfem::NURBSExtension::NumOfVertices
protected

Definition at line 178 of file nurbs.hpp.

int mfem::NURBSExtension::own_topo
protected

Definition at line 189 of file nurbs.hpp.

Array<int> mfem::NURBSExtension::p_meshOffsets
protected

Definition at line 205 of file nurbs.hpp.

Array<int> mfem::NURBSExtension::p_spaceOffsets
protected

Definition at line 211 of file nurbs.hpp.

Array<NURBSPatch *> mfem::NURBSExtension::patches
protected

Definition at line 220 of file nurbs.hpp.

Mesh* mfem::NURBSExtension::patchTopo
protected

Definition at line 188 of file nurbs.hpp.

Array<int> mfem::NURBSExtension::slave
protected

Definition at line 199 of file nurbs.hpp.

Array<int> mfem::NURBSExtension::v_meshOffsets
protected

Definition at line 202 of file nurbs.hpp.

Array<int> mfem::NURBSExtension::v_spaceOffsets
protected

Definition at line 208 of file nurbs.hpp.

Vector mfem::NURBSExtension::weights
protected

Definition at line 192 of file nurbs.hpp.


The documentation for this class was generated from the following files: