Reduces projection
This commit is contained in:
parent
58c9fc9f83
commit
f90f51efc7
1 changed files with 1 additions and 1 deletions
|
@ -84,7 +84,7 @@ export default class BrushSession extends BaseSession {
|
|||
const nextPrev = vec.med(this.previous, point)
|
||||
|
||||
// A delta to project the projected point
|
||||
const offset = vec.mul(vec.sub(nextPrev, this.previous), 2)
|
||||
const offset = vec.sub(nextPrev, this.previous)
|
||||
|
||||
this.previous = nextPrev
|
||||
|
||||
|
|
Loading…
Reference in a new issue