File: main.cpp

package info (click to toggle)
lib2geom 1.4-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 6,116 kB
  • sloc: cpp: 64,251; python: 2,889; ansic: 1,963; makefile: 31
file content (12 lines) | stat: -rw-r--r-- 298 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
#include <2geom/2geom.h>
#include <iostream>
#include "my_lib.h"

int main() {
    Geom::Rect rect1(0, 0, 1, 1);
    Geom::Rect rect2(0.5, 0.5, 1.5, 1.5);

    std::cout << sum_of_three_points(Geom::Point(1, 1), Geom::Point(1, 2), Geom::Point(2, 3));

    return rect1.intersects(rect2) ? 0 : 1;
}