Math3D Full Project API
    Preparing search index...
    type SurfaceQuery = {
        kind: SurfaceQueryKind;
        neighborhood: (pick: SurfaceQueryPick) => SurfaceQueryNeighborhood | null;
        projectToChart: (pick: SurfaceQueryPick) => SurfaceQueryChartCoord | null;
        sampleAt: (pick: SurfaceQueryPick) => SurfaceQuerySample | null;
        scalarField?: (name: string) => SurfaceScalarField | null;
        tangentBasis: (pick: SurfaceQueryPick) => SurfaceQueryTangentBasis | null;
        vectorField?: (name: string) => SurfaceVectorField | null;
    }
    Index

    Properties

    neighborhood: (pick: SurfaceQueryPick) => SurfaceQueryNeighborhood | null
    projectToChart: (pick: SurfaceQueryPick) => SurfaceQueryChartCoord | null
    sampleAt: (pick: SurfaceQueryPick) => SurfaceQuerySample | null
    scalarField?: (name: string) => SurfaceScalarField | null
    tangentBasis: (pick: SurfaceQueryPick) => SurfaceQueryTangentBasis | null
    vectorField?: (name: string) => SurfaceVectorField | null