Line

edited December 2016 in How To...

I want to create a line that can rotate around a circle 360 degree, so I want to have an ellipse and a line that has a start point of (mouseX, mouseY), but for the end point, it has to be able to rotate depending on the angle. I can't seem to get that done though.... I have like a whole list of if and else statments where if the angle is less than 90 degree, line will be this and so on. But I don't know how to calculate the angle to begin with.

Answers

  • @imanseif

    There is an example provided in Processing that will be a good start for you. Open the Examples from the File menu, then go to Topics>>Vectors>>VectorMath pde file.

    This is one way to do something like this. If you have any problem or more questions, post your code below.

    Kf

  • Sorry I can't find the example from the menu file

  • Answer ✓

    On PRocessing IDE, go to File>>Examples...

    Kf

    Screenshot (5934)

  • /**
     * Vector 
     * by Daniel Shiffman.  
     * 
     * Demonstration some basic vector math: subtraction, normalization, scaling
     * Normalizing a vector sets its length to 1.
     */
    
    void setup() {
      size(640, 360);
    }
    
    void draw() {
      background(0);
    
      // A vector that points to the mouse location
      PVector mouse = new PVector(mouseX, mouseY);
      // A vector that points to the center of the window
      PVector center = new PVector(width/2, height/2);
      // Subtract center from mouse which results in a vector that points from center to mouse
      mouse.sub(center);
    
      // Normalize the vector
      mouse.normalize();
    
      // Multiply its length by 150 (Scaling its length)
      mouse.mult(150);
    
      translate(width/2, height/2);
      // Draw the resulting vector
      stroke(255);
      strokeWeight(4);
      line(0, 0, mouse.x, mouse.y);
    }
    
  • For more information check out natureofcode.com that's Shiffmans book online. You can choose to pay for it, download it for free or just read it online. It helped me a lot to understand vectors, rotating and just making things move in an interesting way.

Sign In or Register to comment.