Loading...
Logo
Processing Forum

Length of line

in Programming Questions  •  3 years ago  
Hi!

I'm stuck with the following problem. 

I have a line which goes from sphere to sphere.
The location of the sphere where the line starts is fixed, the others are not. 
The length of the line is also fixed, thus it determines where sphere 2, 3 etc are located. 
The length of the line should be read in from an online website, but for now it is okay if I manually can enter a number.
The thing is that I don't know how to approach this problem because I really don't know how I can make a line with a certain length instead of giving it a fixed starting and end point. 

Can somebody please help me getting started with this. 
I have basic+ knowledge of processing but this is one step too far for me. 

Great thanks in advance!



Replies(5)

Re: Length of line

3 years ago
More of a maths problem than a Processing question...  Do some research on trigonometry ;)

Rather than two fixed points you can also think of a line in terms of starting point, an angle and a length:

Copy code
  1. int lineLength = 100;
  2. float centreX;
  3. float centreY;
  4. void setup() {
  5.   size(400,400);
  6.   centreX = width/2;
  7.   centreY = height/2;
  8. }
  9. void draw() {
  10.   background(0);
  11.   // determine the angle
  12.   float dx = mouseX - centreX;
  13.   float dy = mouseY - centreY;
  14.   float angle = atan2(dy, dx);
  15.  
  16.   // calculate the end point
  17.   float newX = centreX + cos(angle) * lineLength;
  18.   float newY = centreY + sin(angle) * lineLength;
  19.  
  20.   noFill();
  21.   strokeWeight(2);
  22.   stroke(255);
  23.   line(centreX,centreY,newX,newY);
  24. }
[edit] Though you do mention spheres rather than circles.  The problem is a little more complex if you are working in 3D....

Re: Length of line

3 years ago
Great thanks for your super fast answer! :)
This should get me started. Now i'll try to build it up a bit from here. 
Oh and for now it will be 2d. Sorry I said spheres but meant circles... 

Re: Length of line

3 years ago
one more question: if I click the length should be twice as long. That works just fine.
But the result is very 'snappy'. How can I get the transition more smooth? 
In other words; one moment the line is (for example) 50 and the other moment suddenly 100. I want that it grows. In 1 or 2 seconds or so. Is that possible? 

Re: Length of line

3 years ago
Yes, but you have to make a variable (or more) to evolve with time, ie. on each draw() call.

Re: Length of line

3 years ago
Thanks! I used millis to do that. Although it works not yet as I want, i'll experiment more with it.