mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-08 17:33:15 +01:00
8 lines
No EOL
177 B
JavaScript
8 lines
No EOL
177 B
JavaScript
|
|
export default function tessellateSurface(surface) {
|
|
|
|
if (!surface.verb) {
|
|
throw 'unsupported parametric surface';
|
|
}
|
|
return surface.verb.tessellate({maxDepth: 3})
|
|
} |