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) • 393 B
TypeScript
import React from "react";
export interface LoftedSurfaceProps {
degreeV?: number;
resolutionU?: number;
resolutionV?: number;
color?: string;
wireframe?: boolean;
children: React.ReactNode;
}
export declare const LoftedSurface: ({ degreeV, resolutionU, resolutionV, color, wireframe, children, }: LoftedSurfaceProps) => import("react/jsx-runtime").JSX.Element | null;