作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我已经将 P5 导入到 Vue 应用程序中,如下所示:
let script = p5 => {
p5.setup = _ => {
this.setup(p5)
}
p5.draw = _ => {
this.draw(p5)
}
}
this.ps = new P5(script)
当我尝试访问像 background(0)
(p5.background(0)
) 这样的方法时一切正常,但如果我尝试访问 p5.Vector。从 Angular ( Angular )
我得到:
TypeError: Cannot read property 'fromAngle' of undefined
我相信这是一个静态方法,但我需要有关如何访问它的帮助。
最佳答案
根据 this回答。使用 p5.constructor.Vector.fromAngle()
关于javascript - 我如何在 Vue JS 中调用 p5.Vector.fromAngle()?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58675197/
我已经将 P5 导入到 Vue 应用程序中,如下所示: let script = p5 => { p5.setup = _ => { this.setup(p5) } p5.dra
我是一名优秀的程序员,十分优秀!