[feat/MAT-362] Catmull-Rom + frozen prefix 증분 path 빌드#304
Open
b0nsu wants to merge 1 commit intorefactor/mat-361-native-stylusfrom
Open
[feat/MAT-362] Catmull-Rom + frozen prefix 증분 path 빌드#304b0nsu wants to merge 1 commit intorefactor/mat-361-native-stylusfrom
b0nsu wants to merge 1 commit intorefactor/mat-361-native-stylusfrom
Conversation
… prefix - smoothing.ts: centripetal Catmull-Rom cubic Bézier로 교체 - centripetalControlPointsMut: 4점 기반 제어점 계산 (mutable singleton, 0 alloc) - buildSmoothPath: cubicTo 기반 Catmull-Rom (기존 quadTo 대비 부드러운 곡선) - [v2 개선] IncrementalPathBuilder: frozen prefix 증분 path 빌드 - 확정된 segments를 frozenPath에 유지, 마지막 ~3 segments만 재계산 - 시나리오: 200 points 획 → 기존 O(n) 전체 재계산 → O(1) 증분 빌드 - DrawingCanvas.tsx: addPoint에서 IncrementalPathBuilder 사용 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
quadratic Bezier를 centripetal Catmull-Rom으로 교체하고, IncrementalPathBuilder로 frozen prefix 증분 빌드를 도입합니다.
시나리오: 200 points 획 → 전체 재계산 O(n) → 마지막 segment만 O(1).
Linear
Changes
smoothing.ts— centripetal Catmull-Rom 알고리즘, IncrementalPathBuilder, centripetalControlPointsMutTesting
pnpm typecheck통과pnpm lint통과Risk / Impact