Source code for pythreejs.extras.core.ShapePath_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 ShapePath(ThreeWidget): """ShapePath Autogenerated by generate-wrappers.js See https://threejs.org/docs/#api/extras/core/ShapePath """ def __init__(self, **kwargs): super(ShapePath, self).__init__(**kwargs) _model_name = Unicode('ShapePathModel').tag(sync=True)
import inspect # Include explicit signature since the metaclass screws it up ShapePath.__signature__ = inspect.signature(ShapePath.__init__)