brepjs API Reference
    Preparing search index...

    Interface WrappedMarker<T>

    Marker interface for the shape() wrapper.

    Full definition lives in wrapperFns.ts — this minimal interface is enough for the resolve() utility and Shapeable<T> type to work without creating circular imports.

    interface WrappedMarker<T extends AnyShape> {
        __wrapped: true;
        val: T;
    }

    Type Parameters

    Hierarchy (View Summary)

    Index

    Properties

    Properties

    __wrapped: true

    Brand property to distinguish wrappers from branded shape handles.

    val: T