我正在使用处理语言来显示A *算法(以找到开始和结束城市之间的最佳路径)。
每个城市都显示为一个点,但我想命名它,我找不到任何方法。
另外,我想设置name的样式,如font-size,color,font-weight。
请告诉我。
编辑:
下面是一个代码片段,我在字符串currCity中有城市名称,它在Double值列表中的位置(它只有2个值,一个是x'轴,另一个是y'轴)。通过使用此位置,我能够绘制点,但不知道如何命名。
基本上我有一个地图,所有城市的关键是城市名称(在我的情况下是唯一的),价值是一个坐标列表。我正在迭代每个键
String currCity = currEntry.getKey();
List<Double> currLocationList = currEntry.getValue();
stroke(255);
ellipse(currLocationList.get(0).intValue(), currLocationList.get(1).intValue(), w, h);
//w, h is width and height of circle (I am setting as just 1 to draw a point)
答案 0 :(得分:1)
这些问题最好由the Processing reference回答。
我想给它命名,我找不到任何方法。
您可以使用text()
功能显示文字。
另外,我想设置name的样式,如font-size,color,font-weight。
请参阅textSize()
功能,fill()
和stroke()
功能以及各种排版功能。