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

Control point size flag #220

Closed jzwar closed 1 year ago

jzwar commented 1 year ago

Overview

Showcase

import splinepy
a = splinepy.Bezier(
    degrees=[1, 1, 1],
    control_points=splinepy.utils.data.cartesian_product(
        [np.array([0,1]) for _ in range(3)]
    )
)

a.show_options["control_point_r"] = 100
a.show_options["control_point_c"] = "k"
a.show()

Checklists