该java.awt.geom
包看起来在处理矢量图形方面非常有用,我对这个功能特别感兴趣:
public void add(Area rhs)
Adds the shape of the specified Area to the shape of this Area. The resulting shape of this Area will include the union of both shapes, or all areas that were contained in either this or the specified Area.
// Example:
Area a1 = new Area([triangle 0,0 => 8,0 => 0,8]);
Area a2 = new Area([triangle 0,0 => 8,0 => 8,8]);
a1.add(a2);
a1(before) + a2 = a1(after)
################ ################ ################
############## ############## ################
############ ############ ################
########## ########## ################
######## ######## ################
###### ###### ###### ######
#### #### #### ####
## ## ## ##
我对java很陌生,所以如果我问一些愚蠢的问题,请原谅我,但是当我将代码粘贴到netbeans时,它表明一个错误,说我应该在triangle
某个地方声明。我不知道这种语法的性质,经过一番搜索,我仍然不知道该怎么办。