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