Source code for pythreejs.math.interpolants.CubicInterpolant_autogen

from ipywidgets import (
    Widget, DOMWidget, widget_serialization, register
)
from ipywidgets.widgets.trait_types import TypedTuple
from traitlets import (
    Unicode, Int, CInt, Instance, ForwardDeclaredInstance, This, Enum,
    Tuple, List, Dict, Float, CFloat, Bool, Union, Any,
)

from ..._base.Three import ThreeWidget
from ..._base.uniforms import uniforms_serialization
from ...enums import *
from ...traits import *

from ..._base.Three import ThreeWidget


[docs]@register class CubicInterpolant(ThreeWidget): """CubicInterpolant Autogenerated by generate-wrappers.js See https://threejs.org/docs/#api/math/interpolants/CubicInterpolant """ def __init__(self, **kwargs): raise NotImplementedError('CubicInterpolant is not yet implemented!') _model_name = Unicode('CubicInterpolantModel').tag(sync=True)
import inspect # Include explicit signature since the metaclass screws it up CubicInterpolant.__signature__ = inspect.signature(CubicInterpolant.__init__)