Virtual Photonics
Assembly: Vts (in Vts.dll) Version: 1.0.12.0 (1.0.12)
Computes the coefficients of the B-spline recursive formula.
Based on the Cox - De Boor algorithm. 'The NURBS Book' page 50.
Namespace: Vts.Modeling.ForwardSolversAssembly: Vts (in Vts.dll) Version: 1.0.12.0 (1.0.12)
Syntax
Parameters
- a
- Type:
System Double
u_j / (u_j - u_(j+p))
- b
- Type:
System Double
u_(j+p+1) / (u_(j+p+1) - u_(j+1))
- c
- Type:
System Double
1 / (u_(j+p) - u_j)
- d
- Type:
System Double
1 / (u_(j+1) - u_(j+p+1))
- nurbsValues
- Type: Vts.Modeling.ForwardSolvers NurbsValues
NurbsValues class with the knots vector and degree
- degree
- Type:
System Int32
degree of the iteration of the recursive formula
- j
- Type:
System Int32
knot index
See Also