有没有办法确定哪个对象正在调用 draw 方法。
创建:
joint.model = [[Box alloc] init];
调用代码:
[joint.model draw];
draw 方法(在 Box 类中):
-(void)draw
{
glBindVertexArrayOES(_boxVAO);
glDrawArrays(GL_TRIANGLES, 0, 7055*3);
}
如何joint
在我的 draw 方法中接收对象?
如果需要更多的课程信息,我可以附上,但我没有假设,因为没有更多。