我有一箇中心座標(x1,y1)
和兩個圓的半徑(r
)。如果在圓圈中找到點擊的點,打印擬合消息
我還有一點A(x2,y2)
,它是鼠標點擊的點。
我寫了一個函數,打印一條消息,如果點A發現在一個圓或內部。
這是我的jsfiddle:
http://jsfiddle.net/alonshmiel/c4upM/22/
我想知道接下來的事情:
if the clicked pixel is inside the lightblue circle, print 1.
else if the clicked pixel is inside the gray circle, print 2.
else print 3.
我建立在函數內部這些圈子:circleInArc
。
另外,我在javascript區域寫了函數:$('#canvas').on('click', function(event) {..}
和function isPointInsideCircle(center_x, center_y, radius, x, y) {..}
。還有另外一些功能是我在html區域編寫的(如circleInArc
)。
請幫我,
任何幫助讚賞!
我知道了!再一次非常感謝你!什麼救命啊! –