void setup()
{
size(640,400);
mapImage=loadImage("map.png");
locationTable = new Table("locations.tsv");
rowCount=locationTable.getRowCount();
}
void draw()
{
background(255);
image(mapImage,0,0);
smooth();
fill(192,0,0);
noStroke();
for(int row=0;row<rowCount;row++)
{
float x=locationTable.getFloat(row,1);
float y=locationTable.getFloat(row,2);
eclipse(x,y,9,9);
}
}
谁可以看看processing这个程序有什么问题啊,出错说the constructor table is undefined
答案:1 悬赏:80 手机版
解决时间 2021-03-24 06:12
- 提问者网友:我没有何以琛的痴心不悔
- 2021-03-23 17:32
最佳答案
- 五星知识达人网友:怀裏藏嬌
- 2021-03-23 19:09
Table没有定义这样new Table("locations.tsv")带有参数的的构造方法,不能这样得到实例
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯