Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 | 17x 17x 17x 17x 17x 17x 17x 17x 17x 17x 17x 17x 17x 17x 17x 17x 17x 17x 3x 3x 3x 3x | import { OpenCascadeInstance, TopoDS_Face } from "../bitbybit-dev-occt/bitbybit-dev-occt"; import { VectorHelperService } from "./api/vector-helper.service"; import * as Inputs from "./api/inputs/inputs"; import { ShapesHelperService } from "./api/shapes-helper.service"; import { OCCReferencedReturns } from "./occ-referenced-returns"; import { IteratorService } from "./services/base/iterator.service"; import { EnumService } from "./services/base/enum.service"; import { ConverterService } from "./services/base/converter.service"; import { EntitiesService } from "./services/base/entities.service"; import { OperationsService } from "./services/base/operations.service"; import { TransformsService } from "./services/base/transforms.service"; import { BooleansService } from "./services/base/booleans.service"; import { ShapeGettersService } from "./services/base/shape-getters"; import { EdgesService } from "./services/base/edges.service"; import { GeomService } from "./services/base/geom.service"; import { WiresService } from "./services/base/wires.service"; import { FacesService } from "./services/base/faces.service"; import { VerticesService } from "./services/base/vertices.service"; import { ShellsService } from "./services/base/shells.service"; import { FilletsService } from "./services/base/fillets.service"; import { SolidsService } from "./services/base/solids.service"; export class OccHelper { private readonly occRefReturns: OCCReferencedReturns; public readonly iteratorService: IteratorService; public readonly converterService: ConverterService; public readonly entitiesService: EntitiesService; public readonly geomService: GeomService; public readonly shapeGettersService: ShapeGettersService; public readonly transformsService: TransformsService; public readonly enumService: EnumService; public readonly verticesService: VerticesService; public readonly booleansService: BooleansService; public readonly edgesService: EdgesService; public readonly wiresService: WiresService; public readonly facesService: FacesService; public readonly shellsService: ShellsService; public readonly solidsService: SolidsService; public readonly operationsService: OperationsService; public readonly filletsService: FilletsService; constructor( public readonly vecHelper: VectorHelperService, public readonly shapesHelperService: ShapesHelperService, public readonly occ: OpenCascadeInstance, ) { this.occRefReturns = new OCCReferencedReturns(occ); this.iteratorService = new IteratorService(occ); this.enumService = new EnumService(occ); this.converterService = new ConverterService(occ); this.entitiesService = new EntitiesService(occ); this.shapeGettersService = new ShapeGettersService(occ, this.enumService, this.iteratorService); this.geomService = new GeomService(occ, this.vecHelper, this.entitiesService); this.booleansService = new BooleansService(occ, this.shapeGettersService); this.transformsService = new TransformsService(occ, this.converterService, this.entitiesService, this.vecHelper); this.verticesService = new VerticesService(occ, this.shapeGettersService); this.edgesService = new EdgesService(occ, this.occRefReturns, this.shapeGettersService, this.entitiesService, this.iteratorService, this.converterService, this.enumService, this.geomService, this.transformsService, this.vecHelper); this.wiresService = new WiresService(occ, this.occRefReturns, this.vecHelper, this.shapesHelperService, this.shapeGettersService, this.transformsService, this.enumService, this.entitiesService, this.converterService, this.geomService, this.edgesService, this.booleansService); this.facesService = new FacesService(occ, this.occRefReturns, this.entitiesService, this.enumService, this.shapeGettersService, this.converterService, this.booleansService, this.wiresService, this.transformsService, this.vecHelper, this.filletsService); this.shellsService = new ShellsService(occ, this.shapeGettersService, this.converterService, this.facesService); this.solidsService = new SolidsService(occ, this.shapeGettersService, this.facesService, this.enumService, this.entitiesService, this.converterService, this.transformsService); this.operationsService = new OperationsService(occ, this.enumService, this.entitiesService, this.converterService, this.booleansService, this.shapeGettersService, this.edgesService, this.transformsService, this.vecHelper, this.wiresService, this.facesService, this.shellsService); this.filletsService = new FilletsService(occ, this.vecHelper, this.iteratorService, this.converterService, this.entitiesService, this.transformsService, this.shapeGettersService, this.edgesService, this.operationsService, this.facesService); // cross reference this.facesService.filletsService = this.filletsService; } surfaceFromFace(inputs: Inputs.OCCT.ShapeDto<TopoDS_Face>) { const face = inputs.shape; const surface = this.occ.BRep_Tool.Surface_2(face); const srf = surface.get(); return srf; } } |