VPBSplinesCoefficients EvaluateMuliplyingValues Method Virtual Photonics - VTS Library
Virtual Photonics
Computes the coefficients of the B-spline recursive formula. Based on the Cox - De Boor algorithm. 'The NURBS Book' page 50.

Namespace: Vts.Modeling.ForwardSolvers
Assembly: Vts (in Vts.dll) Version: 1.0.12.0 (1.0.12)
Syntax

public void EvaluateMuliplyingValues(
	ref double a,
	ref double b,
	ref double c,
	ref double d,
	NurbsValues nurbsValues,
	int degree,
	int j
)

Parameters

a
Type: OnlineSystem Double 
u_j / (u_j - u_(j+p))
b
Type: OnlineSystem Double 
u_(j+p+1) / (u_(j+p+1) - u_(j+1))
c
Type: OnlineSystem Double 
1 / (u_(j+p) - u_j)
d
Type: OnlineSystem 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: OnlineSystem Int32
degree of the iteration of the recursive formula
j
Type: OnlineSystem Int32
knot index
See Also