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

added function for determinant_spline and corresponding test #293

Closed FSchwar closed 10 months ago

FSchwar commented 11 months ago

Overview

Added a function to get the jacobian-determinant-spline of a given spline object.

Addressed issues

Showcase

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

import splinepy
mySpline = splinepy.helpme.create.disk(3,1,180)
det_Spl = splinepy.helpme.create.determinant_spline(mySpline)

Checklists

j042 commented 11 months ago

please don't mark it resolved until it is resolved

j042 commented 10 months ago

If this is finalized, could you please rebase?

FSchwar commented 10 months ago

Rebased with final improvements.