react-three-nurbs
Version:
A React component library for NURBS (Non-Uniform Rational B-Spline) curves, surfaces, and solids in Three.js. Built with React Three Fiber, zero external NURBS dependencies — all math implemented from scratch. Boolean operations powered by OpenCASCADE WAS
11 lines (10 loc) • 396 B
TypeScript
import type { NurbsSurface as NurbsSurfaceCore } from "../core";
export interface IsoCurvesProps {
surface: NurbsSurfaceCore;
countU?: number;
countV?: number;
color?: string;
lineWidth?: number;
resolution?: number;
}
export declare const IsoCurves: ({ surface, countU, countV, color, lineWidth, resolution, }: IsoCurvesProps) => import("react/jsx-runtime").JSX.Element;