Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How to create an arrow from one circle to another with KinectJS?

I have 2 circles with radius=r and stroke=1. How do I do a smooth rounding arrow, or just path from one to another?

thanks

share|improve this question
can you create a jsfiddle? – EliteOctagon Jan 10 at 15:25
well, I don't use the KinectJS, I've made my own~framework.. thanks for interest anyway (; – Totty Jan 10 at 15:30
cool, what framework? – EliteOctagon Jan 10 at 15:36
It's more object oriented and it's based on Qooxdoo OOP, take a look here if you want. It's not updated, but I can make a push tonight. github.com/totty90/TottysTools/tree/master/trunk/source/class/… – Totty Jan 10 at 15:41
Nice, can I see this anywhere in action? Like with a simple animation or some other example? – EliteOctagon Jan 10 at 16:03
show 3 more comments

1 Answer

up vote 1 down vote accepted

If you want just a simple line, you could use

 Kinetic.Line({
        points: [circle1.getX(), circle1.getY(), circle2.getX(), circle2.getY()],
        stroke: 'red',
        strokeWidth: 15,
        lineCap: 'round',
        lineJoin: 'round'
 });

Curved Lines can be created with a Kinetic.Spline()

  var spline = new Kinetic.Spline({
    points: [{
      x: circle1.getX(),
      y: circle1.getY()
    }, {
      x: (circle1.getX()+circle2.getX())/2, 
      y: (circle1.getY()+circle2.getX())/2 +50   // modify this 50 to something that makes it round
    }, {
      x: circle2.getX(),
      y: circle2.getY()
    }],
    stroke: 'red',
    strokeWidth: 2,
    lineCap: 'round',
    tension: 1
  });
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.