tataratat / splinepy

Library for prototyping spline geometries of arbitrary dimensions and degrees, and IGA
https://tataratat.github.io/splinepy
Other
47 stars 13 forks source link

Embedded Splines #374

Closed jzwar closed 8 months ago

jzwar commented 8 months ago

Overview

Embedding into a higher dimension. Can also strip coordinate dimensions (always the last)

Showcase

A short / one-liner example to highlight the (new) feature

import splinepy as spp

rectangle = spp.helpme.create.box(1,2)
rectangle_in_4d = rectangle.create.embedded(4)

Checklists