所以我是处理新手,正在尝试创建一件生成艺术作品,它显示一本书(在我的例子中是《了不起的盖茨比》)的单词用法,并以独特的格式显示它。截至目前,我已经在 D. Shiffman 修改的旧文章的帮助下完成了数据提取的部分,该文章可以在下面找到。截至目前,我正在决定显示方法,但不太确定如何进行。
我决定采用这种格式是“太空广阔”的家伙。我想我应该对其进行格式化,其中每个唯一的单词都是它自己的行,并且就像片段中的行一样,使用中的值将决定球体轨道周围的行长度。这两个值都是下面代码中生成的值。
如果有人有任何想法来开始流程(参考、建议或实际代码),我们将不胜感激。再次感谢,祝您有美好的一天。
Img 可以在这里找到:http://spaceisvast.com/post/102743224728/iterations-on-a-concept-something-very
String[] gatsby;
String delimiters = " .,?!:;[]- ";
IntDict words;
int usage;
int textAmount = 8754;
int myScale;
//int count = words.get(theword);
void setup(){
size(600,600);
background(255);
smooth();
// loading gatsby into the string
String[] rawtext = loadStrings("TXT.rtf");
//create big ass string
String everything = join(rawtext, "");
//create single words array
gatsby = splitTokens(everything, delimiters);
//create my a shinny dictionary of text
words = new IntDict();
for (int i = 0; i < gatsby.length; i++){
String usage = gatsby[i].toLowerCase();
words.increment(usage);
}
//sort by value
//words.sortValuesReverse();
println(words);
}
void draw(){
}