学校のプロジェクトでは、処理プラットフォームでデリシャス API を使用しようとしています。
質問があります、
これまでのところ、個々の投稿の「タイトル」と「タグ」を処理キャンバスに視覚化できます。
私のコードは次のようになります。
Delicious delicious;
PFont font;
String title;
void setup() {
font = loadFont("HelveticaNeue-9.vlw");
textFont(font);
size(800, 1000);
// Initiate Delicious object. Replace username and password with your own info.
delicious=new Delicious("myusername", "mypassword");
// Retrieve recent posts. The result is a List object containing the
// Posts as del.icio.us.beans.Post objects. We'll use List.toArray() to
// give us an array of the Objects in the List.
Object [] o=delicious.getRecentPosts("", 150).toArray();
// Uncomment the following line to get all posts.
// Object [] o=delicious.getAllPosts().toArray();
// Convert the Objects to Posts
Post [] posts=new Post[o.length];
for (int i=0; i<posts.length; i++) {
posts[i]=(Post)o[i];
}
// Print the posts
println("Del.icio.us posts retrieved: "+posts.length);
for (int i=0; i<posts.length; i++) {
println(i+": "+posts[i]);
pushMatrix();
translate(50, 50);
float descriptionWidth = textWidth(posts[i].getDescription());
float tagWidth = textWidth(posts[i].getTag());
int margin = 30;
fill(50);
text(posts[i].getDescription(), 0, 20*i);
text(posts[i].getTime(), descriptionWidth + margin, 20*i);
fill(135);
text(posts[i].getTag(), descriptionWidth + margin, 20*i);
popMatrix();
}
}
私がやりたいのは、「デザイン」のような特定の取得を取得し、そのタグの周りに投稿のタイトルを分散させ、中心からそれぞれに線を引きたいということです...
しかし、ドキュメントでは、メソッドで特定のタグを 1 つ取得する方法が見つかりませんgetTag()
。
ドキュメントへのリンクはこちらです (getTag) http://delicious-java.sourceforge.net/del/icio/us/beans/Post.html#getTag()
タグ「デザイン」を取得し、ランダムに「デザイン」タグを含む投稿のタイトルを入力します。
その背後にあるロジックは何ですか、説明してもらえますか?