📅  最后修改于: 2023-12-03 15:03:26.963000             🧑  作者: Mango
quadraticVertex()
函数是p5.js中用于绘制二次曲线的函数,可以在p5.js的图形上下文中使用。
quadraticVertex(cx, cy, x, y)
其中,起点和终点由之前的 beginShape()
和 endShape()
函数指定。
quadraticVertex()
函数可以与 beginShape()
和 endShape()
函数配合使用,来绘制二次曲线。在绘制之前,您需要使用 beginShape()
函数来指明起点,然后使用 quadraticVertex()
函数来添加二次曲线的控制点和结束点,最后使用 endShape()
函数来终止此形状。
以下是一个绘制二次曲线的示例:
function setup() {
createCanvas(400, 400);
}
function draw() {
background(220);
noFill();
stroke(0);
strokeWeight(2);
beginShape();
vertex(50, 50);
quadraticVertex(150, 200, 250, 50);
endShape();
}