import { BRepAdaptor_Curve, BRepAdaptor_CompCurve, Geom_Curve, BitbybitOcctModule, TopoDS_Shape } from "../../../bitbybit-dev-occt/bitbybit-dev-occt"; import * as Inputs from "../../api/inputs"; import { Base } from "../../api/inputs"; import { VectorHelperService } from "../../api/vector-helper.service"; import { EntitiesService } from "./entities.service"; export declare class GeomService { readonly occ: BitbybitOcctModule; private readonly vecHelper; private readonly entitiesService; constructor(occ: BitbybitOcctModule, vecHelper: VectorHelperService, entitiesService: EntitiesService); curveLength(inputs: Inputs.OCCT.ShapeDto): number; curveLengthCompCurve(inputs: Inputs.OCCT.ShapeDto): number; pointOnCurveAtParam(inputs: Inputs.OCCT.DataOnGeometryAtParamDto): Base.Point3; pointOnCurveAtLength(inputs: Inputs.OCCT.DataOnGeometryAtLengthDto): Base.Point3; pointOnCompCurveAtLength(inputs: Inputs.OCCT.DataOnGeometryAtLengthDto): Base.Point3; pointsOnCurveAtLengths(inputs: Inputs.OCCT.DataOnGeometryAtLengthsDto): Base.Point3[]; pointsOnCompCurveAtLengths(inputs: Inputs.OCCT.DataOnGeometryAtLengthsDto): Base.Point3[]; tangentOnCurveAtLength(inputs: Inputs.OCCT.DataOnGeometryAtLengthDto): Base.Point3; tangentOnCurveAtLengthCompCurve(inputs: Inputs.OCCT.DataOnGeometryAtLengthDto): Base.Point3; tangentOnCurveAtParam(inputs: Inputs.OCCT.DataOnGeometryAtParamDto): Base.Point3; divideCurveByEqualLengthDistance(inputs: Inputs.OCCT.DivideDto): Base.Point3[]; divideCompCurveByEqualLengthDistance(inputs: Inputs.OCCT.DivideDto): Base.Point3[]; divideCurveToNrSegments(inputs: Inputs.OCCT.DivideDto, uMin: number, uMax: number): Base.Point3[]; startPointOnCurve(inputs: Inputs.OCCT.ShapeDto): Inputs.Base.Point3; endPointOnCurve(inputs: Inputs.OCCT.ShapeDto): Inputs.Base.Point3; getLinearCenterOfMass(inputs: Inputs.OCCT.ShapeDto): Base.Point3; }