소스 검색

Update 'src/app/components/intersection-component/drawers/intersection-drawer.js'

Only special character removed in comment in:
"const intersectionOg1Og2 = og1.getIntersection(og2); // get [PA, PB], ..."
It was an acute symbol over the first "P"
leo 2 달 전
부모
커밋
df5bb6b448
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/app/components/intersection-component/drawers/intersection-drawer.js

+ 1 - 1
src/app/components/intersection-component/drawers/intersection-drawer.js

@@ -173,7 +173,7 @@ export class IntersectionDrawer extends Drawer {
 
     // Really create the intersection: line-segment-model.js!getIntersectionByLine(.); getIntersectionWithCircumference(.)
     // app/components/: line-component/models/line-model.js; line-segment-component/models/line-segment-model.js; circumference-component/models/circumference-model.js
-    const intersectionOg1Og2 = og1.getIntersection(og2); // get [A, PB], but perhaps PA or PB is Point, NOT IntersectionPoint!
+    const intersectionOg1Og2 = og1.getIntersection(og2); // get [PA, PB], but perhaps PA or PB is Point, NOT IntersectionPoint!
 
     // app/components/intersection-component/services/intersection-service.js
     const intersectionPoints = intersectionService.addIntersections(intersectionOg1Og2, og1, og2);