File: definitions.pas

package info (click to toggle)
optgeo 2.11-3
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 12,264 kB
  • sloc: pascal: 56,972; makefile: 100; xml: 63
file content (26 lines) | stat: -rwxr-xr-x 376 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
unit Definitions;

{$mode objfpc}{$H+}

interface

uses
  Classes, SysUtils; 

  const
  maxsommet=500;


   type
  PointPolyhedre=object
 ax,ay:extended;
 end;
TableauPointPolyhedre=array[1..maxsommet+1] of pointpolyhedre;

 TableauRectiligne=array[1..maxsommet+1] of boolean;
 sommetsreels=array[1..maxsommet+1] of extended;

implementation

end.