blob: 68852aee909ad0908e95db80c502ef73ce484e76 (
plain)
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
|
{$mode objfpc}{$H+}
uses
Classes, SysUtils
{ add your units here };
type
TSingle3DVector = array[0..2] of single;
TSingle4DVector = array[0..3] of single;
function VectorLength(const aV3D : TSingle3DVector) : single; overload;
begin
end;
function VectorLength(const aV4D : TSingle4DVector) : single; overload;
begin
end;
function VectorLength(const aVxD : array of single) : single; overload;
begin
end;
begin
end.
|