我是oop javascript的新手,我想知道是否有人可以帮助我如何从对象中的对象正确调用方法。使圆形花园似乎工作,我甚至可以从那个花园里打个圆圈。但每当我想打电话给x时,它就会停止工作......
以下是代码:
var cg = new circlegarden(4);
var testx = cg.getCircle(0).getx();
function circle(x, y, vx, vy, dv, color) {
this.x=x;
this.y=y;
this.vx=vx;
this.vy=vy;
this.dv=dv;
this.color=color;
this.vertices = [0.0, 0.0, 0.0];
for(var i = 0; i <= 40; i++) {
this.vertices.push(Math.cos((2 * Math.PI)/40));
this.vertices.push(Math.sin((2 * Math.PI)/40));
this.vertices.push(0);
}
this.getx = function() {
return this.x;
}
//other methods...
}
function circlegarden(n) {
this.n=n;
this.circles=new Array();
for(var i = 0; i < this.n; i++) {
this.circles.push(2*Math.cos((2 * Math.PI)/this.n), 2*Math.sin((2 * Math.PI)/this.n), 2*(Math.random()-.5), 2*(Math.random()-.5), 0.02, i);
}
this.wall=[[-2.9, -2.5, 2.9, -2.5], [-2.9, 2.5, 2.9, 2.5], [-2.9, -2.5, -2.9, 3], [2.9, -2.5, 2.9, 2.5]];
this.getCircle = function(i) {
return this.circles[i];
}
//other methods...
}
答案 0 :(得分:0)
你没有在for循环中创建圈子。您应该使用new circle(2*Math.cos((2 * Math.PI)/this.n), 2*Math.sin((2 * Math.PI)/this.n), 2*(Math.random()-.5), 2*(Math.random()-.5), 0.02, i)
来创建