fpc/tests/webtbs/tw7489.pp
Jonas Maebe e4d48432d8 - removed svn:executable
git-svn-id: trunk@5015 -
2006-10-23 22:52:04 +00:00

27 lines
431 B
ObjectPascal

{$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.