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
9 lines (8 loc) • 359 B
TypeScript
import type { ReactElement } from "react";
export interface SurfaceIntersectionProps {
tolerance?: number;
lineColor?: string;
lineWidth?: number;
children: ReactElement[];
}
export declare const SurfaceIntersection: ({ tolerance, lineColor, lineWidth, children, }: SurfaceIntersectionProps) => import("react/jsx-runtime").JSX.Element | null;