File: my_lib.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 (6 lines) | stat: -rw-r--r-- 134 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
#include "my_lib.h"

using namespace Geom;
Point sum_of_three_points(const Point&a, const Point&b, const Point&c){
    return a+b+c;
}