Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

segment.js的set方法bug #7

Closed
fylinggh opened this issue Dec 1, 2021 · 4 comments
Closed

segment.js的set方法bug #7

fylinggh opened this issue Dec 1, 2021 · 4 comments

Comments

@fylinggh
Copy link

fylinggh commented Dec 1, 2021

set(p0: Vec3, p1: Vec3) {

this[0].copy(p0);

this[0].copy(p1);

this.change();

}
要改为
set(p0: Vec3, p1: Vec3) {

this[0].copy(p0);

this[1].copy(p1);

this.change();

}

@yszhao91
Copy link
Owner

这个问题已经收到 ,后续版本会纠正

@yszhao91
Copy link
Owner

yszhao91 commented Dec 23, 2021

也可以自己纠正提交,,我会合并,这样你也可以变成贡献者

@yszhao91 yszhao91 reopened this Dec 29, 2021
@yszhao91
Copy link
Owner

已经修正

@fylinggh
Copy link
Author

fylinggh commented Jan 12, 2022 via email

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants