Calculates the binormal vector of a parametric curve at a value.
The function
The value
const curve = Chalkboard.real.define((t) => t, (t) => t * t, (t) => t * t * t);const binormal = Chalkboard.calc.binormal(curve, 1); // Returns the curve's binormal vector Copy
const curve = Chalkboard.real.define((t) => t, (t) => t * t, (t) => t * t * t);const binormal = Chalkboard.calc.binormal(curve, 1); // Returns the curve's binormal vector
Calculates the binormal vector of a parametric curve at a value.