mirror of
				https://gitlab.com/freepascal.org/fpc/source.git
				synced 2025-11-04 07:59:34 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			27 lines
		
	
	
		
			431 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
			
		
		
	
	
			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.
 |