World Cloud Generator を使用しようとしています: http://www.jasondavies.com/wordcloud/about/ D3.JS で使用するアドオンです。
これが私のコードです:
var fill = d3.scale.category20();
function draw(words) {
d3.select("body").select("#corps div")
.append("svg")
.attr("width", 900)
.attr("height", 900)
.append("g")
.attr("transform", "translate(450,450)")
.selectAll("text")
.data(words)
.enter().append("text")
.attr("text-anchor", "middle")
.attr("transform", function(d) {
return "translate(" + [d.x, d.y] + ")rotate(" + d.rotate + ")";
})
.style("font-size", function(d) { return d.size + "px"; })
.style("font-family", "Impact")
.style("fill", function(d, i) { return fill(i); })
.text(function(d) { return d.text; });
}
function rotation(){
return ~~(90 * Math.random() *2);
}
var taille = 90;
function motTaille(mot){
taille = taille -2;
return {text: mot, size: taille};
}
var mots = tabMots.map(motTaille);
var layout = d3.layout.cloud()
.timeInterval(10)
.size([900, 900])
.words(words_tab)
.padding(1)
.rotate(function() { return ~~(Math.random() * 2) * 90; })
.font("Impact")
.fontSize(function(d) { return d.size; })
.on("end", draw)
.start();
私はすでに単語の配列を持っています : words_tab
.
私の問題は次のとおりです。Web サイトでは、Jason Davies (著者) が衝突の検出をコード化しています。しかし、配列に多くの単語がある場合、それらは互いに重なり合っています...
何か足りないのですか?