@equinor/videx-3d
    Preparing search index...

    Variable CasingsConst

    Casings: ForwardRefExoticComponent<
        CommonComponentProps & {
            autoSlicePosition?: boolean;
            fallback?: () => ReactElement<Object3D<Object3DEventMap>>;
            materialOptions?: MaterialOptions;
            opacity?: number;
            overrideSegmentsPerMeter?: number;
            overrideSimplificationThreshold?: number;
            priority?: number;
            radialSegments?: number;
            shoeFactor?: number;
            sizeMultiplier?: number;
            sliceAngle?: number;
            sliceOffset?: number;
        } & RefAttributes<Group<Object3DEventMap>>,
    > = ...

    Generic render of casings based on depths, diameters and type. Must be a child of the Wellbore component.

    The casing may be "sliced" at an angle using the sliceAngle prop. The sliceOffset prop determines the offset from the z axis to the center of the slice. Setting autoSlicePosition to true will always show the center of the slice facing the camera. With this option set to true, the sliceOffset should be set to 0.

    An alternative to using the slice feature is to set opacity < 1 if you want to see the internals.

    <Wellbore id={wellbore.id}>
    <Casings sizeMultiplier={5} />
    </Wellbore>

    The fallback prop may be used to render a different component if there is no completion tool data available for the wellbore.