Part of Slepp's ProjectsPastebinTURLImagebinFilebin
Feedback -- English French German Japanese
Create Upload Newest Tools Donate
Sign In | Create Account

Advertising

advertising

related pastes to tag 'points'

1717481 - points for sql server 2008: sql server 2008 points spatial
  1. -- drop table points;
  2.  
  3. CREATE TABLE points (id integer PRIMARY KEY, geom geometry);
  4.  
  5.  
  6. INSERT INTO points (id, geom) VALUES (1, geometry::Parse('POINT(154597 159517)'));
  7. INSERT INTO points (id, geom) VALUES (2, geometry::Parse('POINT(159929 157759)'));
  8. INSERT INTO points (id, geom) VALUES (3, geometry::Parse('POINT(157482 164124)'));
  9.  
835770 - Instersection of two lines: pascal linear equation two points
  1. program prog;
  2. uses wincrt;
  3. var
  4.                 m1, m2, b1, b2: real;
  5.                 x1, y1, x2, y2: real;
  6.                 x3, y3, x4, y4: real;
  7.                 x, y: real;
  8.                 m1_inf, m2_inf: byte;
  9.  
worth-right
fantasy-obligation