Quelcode des Partikelsystems Boden
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

line.h 124B

12345678910111213141516
  1. #pragma once
  2. #include "ofMain.h"
  3. class Line
  4. {
  5. public:
  6. Line();
  7. ~Line();
  8. ofPolyline lines;
  9. ofPoint a;
  10. ofPoint b;
  11. };