-
Notifications
You must be signed in to change notification settings - Fork 23
/
matmath.pas
executable file
·685 lines (626 loc) · 21.8 KB
/
matmath.pas
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
unit matmath;
{$IFDEF FPC}
{$mode objfpc}{$ENDIF}{$H+}
interface
uses
Classes, SysUtils, define_types, math;
function pt4f(x,y,z,w: single): TPoint4f; //create float vector
function ptf(x,y,z: single): TPoint3f; //create float vector
function pti(x,y,z: integer): TPoint3i; //create integer vector
function getSurfaceNormal(v1, v2, v3: TPoint3f): TPoint3f;
function normalDirection(v1, v2: TPoint3f): TPoint3f;
function crossProduct(v1, v2: TPoint3f): TPoint3f;
procedure vectorTransform(var v: TPoint3f; mat: TMat44);
procedure vectorNormalize(var v: TPoint3f); inline;
procedure vectorReciprocal(var v: TPoint3f);
function vectorAbs(var v: TPoint3f): TPoint3f;
function vectorDot (A: TPoint3f; B: TPoint3f): single;
procedure vectorAdd (var A: TPoint3f; B: TPoint3f); inline; overload;
function vectorAdd (A: TPoint3i; B: integer): TPoint3i; inline; overload;
procedure vectorSubtract (var A: TPoint3f; B: TPoint3f); inline;
function vectorSubtractF (A: TPoint3f; B: TPoint3f): TPoint3f; inline;
procedure minMax(var v, mn, mx: TPoint3f); overload;
procedure minMax(var v, mn, mx: TPoint3i); overload;
procedure minMax(var v: TPoint3i; var mn, mx: integer); overload;
function vectorLength(pt1, pt2: TPoint3F): single;
function vectorSame(pt1, pt2: TPoint3f): boolean;
function matrixMult(a, b: TMat33): TMat33; overload;
function matrixMult(a, b: TMat44): TMat44; overload;
function matrixEye: TMat44; overload;
function matrixSet(a,b,c, d,e,f, g,h,i: single): TMat33; overload;
function matrixSet(r1c1, r1c2, r1c3, r1c4, r2c1, r2c2, r2c3, r2c4, r3c1, r3c2, r3c3, r3c4: single): TMat44; overload;
function matrixInvert(a: TMat33): TMat33;
procedure matrixNegate(var a: TMat33);
procedure matrixTranspose(var a: TMat33); overload;
procedure matrixTranspose(var a: TMat44); overload;
//function vectorMult (var A: TPoint3f; B: single): TPoint3f; inline; //same as vectorScale
procedure vectorNegate(var v: TPoint3f); inline;
//function AlignVector(alignmentVector: TPoint3f): TMat33;
function vectorDistance(A,B: TPoint3f): single; //[euclidean distance] = sqrt(dX^2+dY^2+dZ^2)
function vectorDistanceSqr(A,B: TPoint3f): single; inline;//[fast as no sqrt] = (dX^2+dY^2+dZ^2)
function vectorScale(A: TPoint3f; Scale: single): TPoint3f; overload; //same as vectorMult
function vectorScale(A: TPoint3f; Scale: TPoint3f): TPoint3f; overload;
procedure MakeCylinder(radius: single; start, dest: TPoint3f; var faces: TFaces; var vertices: TVertices; slices: integer = 20); overload;
procedure MakeCylinder( radius, len: single; var faces: TFaces; var vertices: TVertices; slices: integer = 20); overload;
procedure makeCylinderEnd(radius: single; prevPos, Pos, nextPos: TPoint3f; var vertices: TVertices; var B: TPoint3f; slices: integer = 20);
implementation
procedure vectorReciprocal(var v: TPoint3f);
begin
if v.X <> 0 then v.X := 1/v.X;
if v.Y <> 0 then v.Y := 1/v.Y;
if v.Z <> 0 then v.Z := 1/v.Z;
end;
function vectorDistanceSqr(A,B: TPoint3f): single; inline;
//do not apply sqrt for dramatic speedup!
begin
//result := sqrt(sqr(A.X-B.X)+ sqr(A.Y-B.Y) + sqr(A.Z-B.Z));
result := (sqr(A.X-B.X)+ sqr(A.Y-B.Y) + sqr(A.Z-B.Z));
end;
(* //now called vectorScale()
function vectorMult (var A: TPoint3f; B: single): TPoint3f; inline;
begin
result.X := A.X * B;
result.Y := A.Y * B;
result.Z := A.Z * B;
end;*)
procedure vectorTransform(var v: TPoint3f; mat : TMat44);
var
vx: TPoint3f;
begin
vx := v;
v.X := vx.X*mat[1,1] + vx.Y*mat[1,2] + vx.Z*mat[1,3] + mat[1,4];
v.Y := vx.X*mat[2,1] + vx.Y*mat[2,2] + vx.Z*mat[2,3] + mat[2,4];
v.Z := vx.X*mat[3,1] + vx.Y*mat[3,2] + vx.Z*mat[3,3] + mat[3,4];
end;
function vectorScale(A: TPoint3f; Scale: single): TPoint3f; overload;
begin
result.X := A.X * Scale;
result.Y := A.Y * Scale;
result.Z := A.Z * Scale;
end;
function vectorScale(A: TPoint3f; Scale: TPoint3f): TPoint3f; overload;
begin
result.X := A.X * Scale.X;
result.Y := A.Y * Scale.Y;
result.Z := A.Z * Scale.Z;
end;
function vectorAdd (A: TPoint3i; B: integer): TPoint3i; inline; overload;
begin
result.X := A.X + B;
result.Y := A.Y + B;
result.Z := A.Z + B;
end;
function vectorDistance(A,B: TPoint3f): single;
begin
result := sqrt(sqr(A.X-B.X)+ sqr(A.Y-B.Y) + sqr(A.Z-B.Z));
end;
function distance(A,B: TPoint3f): single;
begin
result := sqrt(sqr(A.X-B.X)+ sqr(A.Y-B.Y) + sqr(A.Z-B.Z));
end;
{$DEFINE NEWCYL}
{$IFDEF NEWCYL}
function Vec3(x,y,z: single): TPoint3f;
begin
result := ptf(x,y, z);
end;
function vectorAdd2 (var A,B: TPoint3f): TPoint3f;
//sum two vectors
begin
result.X := A.X + B.X;
result.Y := A.Y + B.Y;
result.Z := A.Z + B.Z;
end; // vectorAdd()
function getFirstPerpVector(v1: TPoint3f): TPoint3f;
//https://stackoverflow.com/questions/1878257/how-can-i-draw-a-cylinder-that-connects-two-points-in-opengl
//return a vector that is perpendicular to the first
begin
result := Vec3(0.0,0.0,0.0);
if ((v1.x = 0.0) or (v1.y = 0.0) or (v1.z = 0.0)) then begin
if (v1.x = 0.0) then
result.x := 1.0
else if (v1.y = 0.0) then
result.y := 1.0
else
result.z := 1.0;
end else begin
// If xyz is all set, we set the z coordinate as first and second argument .
// As the scalar product must be zero, we add the negated sum of x and y as third argument
result.x := v1.z; //scalp = z*x
result.y := v1.z; //scalp = z*(x+y)
result.z := -(v1.x+v1.y); //scalp = z*(x+y)-z*(x+y) = 0
// Normalize vector
vectorNormalize(result);//result := result.Normalize;
end;
end;
procedure makeCylinder(radius: single; start, dest: TPoint3f; var faces: TFaces; var vertices: TVertices; slices: integer = 20); overload;
//https://stackoverflow.com/questions/1878257/how-can-i-draw-a-cylinder-that-connects-two-points-in-opengl
var
v1, v2, v3, pt: TPoint3f;
c, s: single;
i, num_v, num_f: integer;
begin
//v1 := (dest - start).Normalize; //principle axis of cylinder
v1 := dest;
vectorSubtract(v1, start);
vectorNormalize(v1);
v2 := getFirstPerpVector(v1); //a unit length vector orthogonal to v1
// Get the second perp vector by cross product
v3 := crossProduct(v1,v2); vectorNormalize(v3); //(v1.Cross(v2)).Normalize; //a unit length vector orthogonal to v1 and v2
num_v := 2 * slices;
num_f := 2 * slices;
setlength(faces, num_f);
setlength(vertices, num_v);
for i := 0 to (slices-1) do begin
c := cos(i/slices * 2 *PI);
s := sin(i/slices * 2 * PI);
pt.x := (radius*(c*v2.x+s*v3.x));
pt.y := (radius*(c*v2.y+s*v3.y));
pt.z := (radius*(c*v2.z+s*v3.z));
vertices[i] := vectorAdd2(start,pt);
vertices[i + slices] := vectorAdd2(dest,pt);
if i < (slices-1) then begin
faces[i * 2] := pti( i, i + 1, i+slices);
faces[(i * 2)+1] := pti( i+1, i + slices + 1, i + slices);
end else begin
faces[i * 2] := pti( i, 0, i+slices);
faces[i * 2 + 1] := pti( 0, 0 + slices, i + slices);
end;
end;
end;
procedure MakeCylinder( radius, len: single; var faces: TFaces; var vertices: TVertices; slices : integer = 20); overload;
//procedure MakeCylinder( radius, len: single; var faces: TFaces; var vertices: TVertices); Overload;
//make a triangular mesh cylinder of specified radius and length. length is in X-dimension, so center is from (0,0,0)..(len,0,0)
var
start, dest: TPoint3f;
begin
start := Vec3(0.0,0.0,0.0);
dest := Vec3(len,0.0,0.0);
makeCylinder(radius, start, dest, faces, vertices, slices);
end;
{$ELSE}
function lengthCross (A,B: TPoint3f): single;
var
v: TPoint3f;
begin
v := crossProduct(A, B);
result := sqrt(sqr(v.X)+ sqr(v.Y) + sqr(v.Z));
end;
function AlignVector(alignmentVector: TPoint3f): TMat33;
//http://math.stackexchange.com/questions/180418/calculate-rotation-matrix-to-align-vector-a-to-vector-b-in-3d
//much simpler and 20% faster than
// http://www.mathworks.com/matlabcentral/fileexchange/12285-3d-quiver-with-volumized-arrows/content/quiver3D_pub/arrow3D.m
var
A, B, crossBA, vx: TPoint3f;
GG, FFi, invFFi, UU: TMat33;
dotAB: single;
begin
if (alignmentVector.Y = 0.0) and (alignmentVector.Z = 0.0) then begin
alignmentVector.Y := 0.0001;
alignmentVector.Z := 0.0001;
end;
A := ptf(-1, 0, 0);
B := alignmentVector;
GG := matrixSet( vectorDot(A,B), -lengthCross(A,B), 0,
lengthCross(A,B), vectorDot(A,B), 0,
0, 0, 1);
crossBA := crossProduct(B,A);
dotAB := vectorDot(A,B);
vx.X :=B.X - A.X * dotAB;
vx.Y :=B.Y - A.Y * dotAB;
vx.Z :=B.Z - A.Z * dotAB;
vectorNormalize(vx);
FFi := matrixSet(A.X, vx.X, crossBA.X,
A.Y, vx.Y, crossBA.Y,
A.Z, vx.Z, crossBA.Z);
invFFi := matrixInvert(FFi);
UU := matrixMult(FFi, GG);
result := matrixMult(UU,invFFi);
matrixNegate(result);
matrixTranspose(result);
end; //AlignVector
procedure MakeCylinder( radius, len: single; var faces: TFaces; var vertices: TVertices; slices : integer = 20); overload;
//procedure MakeCylinder( radius, len: single; var faces: TFaces; var vertices: TVertices); Overload;
//make a triangular mesh cylinder of specified radius and length. length is in X-dimension, so center is from (0,0,0)..(len,0,0)
var
i, num_v, num_f: integer;
x,y: single;
begin
num_v := 2 * slices;
num_f := 2 * slices;
setlength(vertices, num_v);
setlength(faces, num_f);
for i := 0 to (slices-1) do begin
y := radius * cos(i/slices * 2 *PI);
x := radius * sin(i/slices * 2 * PI);
vertices[i] := ptf(0,x, y);
vertices[i + slices] := ptf(len, x, y);
if i < (slices-1) then begin
faces[i * 2] := pti( i, i + 1, i+slices);
faces[(i * 2)+1] := pti( i+1, i + slices + 1, i + slices);
end else begin
faces[i * 2] := pti( i, 0, i+slices);
faces[i * 2 + 1] := pti( 0, 0 + slices, i + slices);
end;
end;
end; // MakeCylinder()
procedure makeCylinder(radius: single; start, dest: TPoint3f; var faces: TFaces; var vertices: TVertices; slices: integer = 20); overload;
var
alignmentVector, v: TPoint3f;
i: integer;
m: TMat33;
len: single;
begin
len := vectorLength(start, dest);
MakeCylinder(radius, len, faces, vertices, slices);
//rotate
if length(vertices) < 1 then exit;
alignmentVector := dest;
vectorSubtract(alignmentVector, start);
vectorNormalize(alignmentVector);
m := AlignVector(alignmentVector);
for i := 0 to (length(vertices)-1) do begin
v := vertices[i];
vertices[i].X := v.X * m[1,1] + v.Y * m[2,1] + v.Z * m[3,1] + start.X;
vertices[i].Y := v.X * m[1,2] + v.Y * m[2,2] + v.Z * m[3,2] + start.Y;
vertices[i].Z := v.X * m[1,3] + v.Y * m[2,3] + v.Z * m[3,3] + start.Z;
end;
end; // makeCylinder()
{$ENDIF}
function perp_hm(u: TPoint3f): TPoint3f;
//given vector u return an perpendicular (orthogonal) vector
// http://blog.selfshadow.com/2011/10/17/perp-vectors/
var
a: TPoint3f;
begin
a := vectorAbs(u);
if (a.x <= a.y) and (a.x <= a.z) then
result := ptf(0, -u.z, u.y)
else if (a.y <= a.x) and (a.y <= a.z) then
result := ptf(-u.z, 0, u.x)
else
result := ptf(-u.y, u.x, 0);
end; //perp_hm()
procedure frenet(prevPos, nextPos: TPoint3f; out N,B: TPoint3f);
//Compute (N)ormal and (B)inormal of a line
//https://en.wikipedia.org/wiki/Frenet–Serret_formulas
var
T : TPoint3f; //Tangent
begin
//compute Normal and Binormal for each tangent
N := ptf(0,0,0);
B := N;
T := nextPos;
vectorSubtract(T, prevPos); //line tangent
vectorNormalize(T); //unit length
N := perp_hm(T); //normal
B := crossProduct(N,T); //binormal
end; //frenet()
procedure sloan(prevPos, nextPos: TPoint3f; var N,B: TPoint3f);
//Compute (N)ormal and (B)inormal of a line using prior binormal
// https://en.wikipedia.org/wiki/Frenet–Serret_formulas
// http://www.cs.cmu.edu/afs/andrew/scs/cs/15-462/web/old/asst2camera.html
// Bloomenthal Graphics Gems 1, "Calculation of Reference Frames along a Space Curve"
// http://webhome.cs.uvic.ca/~blob/courses/305/notes/pdf/ref-frames.pdf
// As noted by Bloomenthal, this is undefined if T1 = B0 (e.g. precise 90-degree joint)
// In this special case we will resort to Frenet
var
T : TPoint3f; //Tangent
begin
//compute Normal and Binormal for each tangent
T := nextPos;
vectorSubtract(T, prevPos); //line tangent
vectorNormalize(T); //unit length
if abs(vectorDot(T,B)) > 0.98 then begin
//hack for Bloomenthal's critique of Sloan's solution :
// if joint is ~90-degrees default to frenet frames
// note that this can lead to some twisting
// however, 90-degree joints are not physiologically plausible in DTI
frenet(prevPos, nextPos, N,B);
exit;
end;
//vectorNegate(B);
//N := crossProduct(B,T); //normal
N := crossProduct(T,B); //normal
vectorNormalize(N); //unit length
B := crossProduct(N,T); //binormal
end; //sload()
procedure makeCylinderEnd(radius: single; prevPos, Pos, nextPos: TPoint3f; var vertices: TVertices; var B: TPoint3f; slices: integer = 20);
// http://www.lab4games.net/zz85/blog/2012/04/24/spline-extrusions-tubes-and-knots-of-sorts/
//make an end cap disk located at Pos and oriented along the axis of the previous and next entry
//Use Ken Sloan's trick to stabilize orientation
// http://www.cs.cmu.edu/afs/andrew/scs/cs/15-462/web/old/asst2camera.html
var
i: integer;
cosT, sinT: single;
N: TPoint3f;
begin
if (B.x = 0) and (B.y = 0) and (B.z = 0) then //if first cylinder (so no prior binormal)
frenet(prevPos, nextPos, N,B)
else
sloan(prevPos, nextPos, N,B);
setlength(vertices, slices);
for i := 0 to (slices-1) do begin
cosT := radius * -cos(i/slices * 2 *PI);
sinT := radius * sin(i/slices * 2 * PI);
vertices[i].X := n.X * cosT + b.X * sinT + Pos.X;
vertices[i].Y := n.Y * cosT + b.Y * sinT + Pos.Y;
vertices[i].Z := n.Z * cosT + b.Z * sinT + Pos.Z;
end;
end; // makeCylinderEnd()
(*procedure makeCylinderEnd(radius: single; prevPos, Pos, nextPos: TPoint3f; var vertices: TVertices; slices: integer = 20);
//make an end cap disk located at Pos and oriented along the axis of the previous and next entry
var
i: integer;
x,y: single;
alignmentVector, v: TPoint3f;
m: TMat33;
begin
setlength(vertices, slices);
for i := 0 to (slices-1) do begin
y := radius * cos(i/slices * 2 *PI);
x := radius * sin(i/slices * 2 * PI);
vertices[i] := ptf(0,x, y);
end;
alignmentVector := nextPos;
vectorSubtract(alignmentVector, prevPos);
vectorNormalize(alignmentVector);
m := AlignVector(alignmentVector);
for i := 0 to (slices-1) do begin
v := vertices[i];
vertices[i].X := v.X * m[1,1] + v.Y * m[2,1] + v.Z * m[3,1] + Pos.X;
vertices[i].Y := v.X * m[1,2] + v.Y * m[2,2] + v.Z * m[3,2] + Pos.Y;
vertices[i].Z := v.X * m[1,3] + v.Y * m[2,3] + v.Z * m[3,3] + Pos.Z;
end;
end; // makeCylinderEnd() *)
(*procedure matrixEye(var a: TMat33);
var
i,j: integer;
begin
for i := 1 to 3 do
for j := 1 to 3 do
a[i,j] := 0;
a[1,1] := 1.0;
a[2,2] := 1.0;
a[3,3] := 1.0;
end; // matrixEve() *)
procedure matrixTranspose(var a: TMat44); overload;
var
b: TMat44;
i,j: integer;
begin
b := a;
for i := 1 to 4 do
for j := 1 to 4 do
a[i,j] := b[j,i];
end; // matrixTranspose()
procedure matrixTranspose(var a: TMat33); overload;
var
b: TMat33;
i,j: integer;
begin
b := a;
for i := 1 to 3 do
for j := 1 to 3 do
a[i,j] := b[j,i];
end; // matrixTranspose()
procedure matrixNegate(var a: TMat33);
var
i,j: integer;
begin
for i := 1 to 3 do
for j := 1 to 3 do
a[i,j] := -a[i,j];
end; // matrixNegate()
function matrixInvert( a: TMat33): TMat33;
//Translated by Chris Rorden, from C function "nifti_mat33_inverse"
// Authors: Bob Cox, revised by Mark Jenkinson and Rick Reynolds
// License: public domain
// http://niftilib.sourceforge.net
//Note : For higher performance we could assume the matrix is orthonormal and simply Transpose
//Note : We could also compute Gauss-Jordan here
var
r11,r12,r13,r21,r22,r23,r31,r32,r33, deti : double;
begin
r11 := a[1,1]; r12 := a[1,2]; r13 := a[1,3]; // [ r11 r12 r13 ]
r21 := a[2,1]; r22 := a[2,2]; r23 := a[2,3]; // [ r21 r22 r23 ]
r31 := a[3,1]; r32 := a[3,2]; r33 := a[3,3]; // [ r31 r32 r33 ]
deti := r11*r22*r33-r11*r32*r23-r21*r12*r33
+r21*r32*r13+r31*r12*r23-r31*r22*r13 ;
if( deti <> 0.0 ) then
deti := 1.0 / deti ;
result[1,1] := deti*( r22*r33-r32*r23) ;
result[1,2] := deti*(-r12*r33+r32*r13) ;
result[1,3] := deti*( r12*r23-r22*r13) ;
result[2,1] := deti*(-r21*r33+r31*r23) ;
result[2,2] := deti*( r11*r33-r31*r13) ;
result[2,3] := deti*(-r11*r23+r21*r13) ;
result[3,1] := deti*( r21*r32-r31*r22) ;
result[3,2] := deti*(-r11*r32+r31*r12) ;
result[3,3] := deti*( r11*r22-r21*r12) ;
end; // matrixInvert()
function vectorDot (A: TPoint3f; B: TPoint3f): single;
begin //dot product
result := A.X*B.X + A.Y*B.Y + A.Z*B.Z;
end; // vectorDot()
function matrixSet(r1c1, r1c2, r1c3, r1c4, r2c1, r2c2, r2c3, r2c4, r3c1, r3c2, r3c3, r3c4: single): TMat44; overload;
begin
result[1,1]:=r1c1; result[1,2]:=r1c2; result[1,3]:=r1c3; result[1,4]:=r1c4;
result[2,1]:=r2c1; result[2,2]:=r2c2; result[2,3]:=r2c3; result[2,4]:=r2c4;
result[3,1]:=r3c1; result[3,2]:=r3c2; result[3,3]:=r3c3; result[3,4]:=r3c4;
result[4,1]:=0; result[4,2]:=0; result[4,3]:=0; result[4,4]:=1;
end;
function matrixEye: TMat44;
begin
result := matrixSet(1,0,0,0, 0,1,0,0, 0,0,1,0);
end;
function matrixSet(a,b,c, d,e,f, g,h,i: single): TMat33; overload;
begin
result[1,1]:=a; result[1,2]:=b; result[1,3]:=c;
result[2,1]:=d; result[2,2]:=e; result[2,3]:=f;
result[3,1]:=g; result[3,2]:=h; result[3,3]:=i;
end; // matrixSet()
function matrixMult(a, b: TMat44): TMat44; overload;
var i,j: integer;
begin
for i := 1 to 4 do begin
for j := 1 to 4 do begin
result[i, j] := A[i, 1] * B[1,j]
+ A[i, 2] * B[2, j]
+ A[i, 3] * B[3, j]
+ A[i, 4] * B[4, j];
end; //for j
end; //for i
end; //multiplymatrices()
function matrixMult(a, b: TMat33): TMat33; overload;
var i,j: integer;
begin
for i := 1 to 3 do begin
for j := 1 to 3 do begin
result[i, j] := A[i, 1] * B[1,j]
+ A[i, 2] * B[2, j]
+ A[i, 3] * B[3, j];
end; //for j
end; //for i
end; //multiplymatrices()
function pt4f(x,y,z, w: single): TPoint4f; //create float vector
begin
result.X := x;
result.Y := y;
result.Z := z;
result.W := w;
end; // pt4f()
function ptf(x,y,z: single): TPoint3f; //create float vector
begin
result.X := x;
result.Y := y;
result.Z := z;
end; // ptf()
function pti(x,y,z: integer): TPoint3i; //create integer vector
begin
result.X := x;
result.Y := y;
result.Z := z;
end; // pti()
procedure minMax(var v, mn, mx: TPoint3f); overload;
begin
if v.X > mx.X then
mx.X := v.X;
if v.X < mn.X then
mn.X := v.X;
if v.Y > mx.Y then
mx.Y := v.Y;
if v.Y < mn.Y then
mn.Y := v.Y;
if v.Z > mx.Z then
mx.Z := v.Z;
if v.Z < mn.Z then
mn.Z := v.Z;
end; // minMax()
procedure minMax(var v, mn, mx: TPoint3i); overload;
begin
if v.X > mx.X then
mx.X := v.X;
if v.X < mn.X then
mn.X := v.X;
if v.Y > mx.Y then
mx.Y := v.Y;
if v.Y < mn.Y then
mn.Y := v.Y;
if v.Z > mx.Z then
mx.Z := v.Z;
if v.Z < mn.Z then
mn.Z := v.Z;
end; // minMax()
procedure minMax(var v: TPoint3i; var mn, mx: integer); overload;
begin
if v.X > mx then
mx := v.X
else if v.X < mn then
mn := v.X;
if v.Y > mx then
mx := v.Y
else if v.Y < mn then
mn := v.Y;
if v.Z > mx then
mx := v.Z
else if v.Z < mn then
mn := v.Z;
end; // minMax()
function crossProduct(v1, v2: TPoint3f): TPoint3f;
// http://openinggl.blogspot.com/2012/04/adding-lighting-normals.html
begin
result := ptf(v1.y * v2.z - v1.z * v2.y, v1.z * v2.x - v1.x * v2.z,
v1.x * v2.y - v1.y * v2.x);
end; // CrossProduct()
function vectorAbs(var v: TPoint3f): TPoint3f;
begin
result.X := abs(v.X);
result.Y := abs(v.Y);
result.Z := abs(v.Z);
end; // abs()
procedure vectorNormalize(var v: TPoint3f); inline;
var
len: single;
begin
len := sqrt( (v.X*v.X) + (v.Y*v.Y) + (v.Z*v.Z) );
if len <= 0 then exit;
v.X := v.X / len;
v.Y := v.Y / len;
v.Z := v.Z / len;
end; // normalize()
function normalDirection(v1, v2: TPoint3f): TPoint3f;
begin
result.X := v2.X - v1.X;
result.Y := v2.Y - v1.Y;
result.Z := v2.Z - v1.Z;
vectorNormalize(result);
end; // normalDirection()
procedure vectorAdd (var A: TPoint3f; B: TPoint3f); inline;
//sum two vectors
begin
A.X := A.X + B.X;
A.Y := A.Y + B.Y;
A.Z := A.Z + B.Z;
end; // vectorAdd()
function vectorLength(pt1, pt2: TPoint3F): single;
begin
result := sqrt (sqr(pt1.X - pt2.X) + sqr(pt1.Y - pt2.Y) + sqr(pt1.Z - pt2.Z) );
end; // vectorLength()
function vectorSame(pt1, pt2: TPoint3F): boolean;
//returns true if pt1 = pt2
// faster than "vectorLength(pt1, pt2) <> 0"
begin
result := false;
if SameValue(pt1.X, pt2.X) and SameValue(pt1.Y, pt2.Y) and SameValue(pt1.Z, pt2.Z) then
result := true;
end; // vectorLength()
procedure vectorNegate(var v: TPoint3f); inline;
begin
v.X := -v.X;
v.Y := -v.Y;
v.Z := -v.Z;
end; // vectorNegate()
function vectorSubtractF (A: TPoint3f; B: TPoint3f): TPoint3f; inline;
begin
result.X := A.X - B.X;
result.Y := A.Y - B.Y;
result.Z := A.Z - B.Z;
end;
procedure vectorSubtract (var A: TPoint3f; B: TPoint3f); inline;
//sum two vectors
begin
A.X := A.X - B.X;
A.Y := A.Y - B.Y;
A.Z := A.Z - B.Z;
end; // vectorSubtract()
function getSurfaceNormal(v1, v2, v3: TPoint3f): TPoint3f;
var
polyVector1, polyVector2: TPoint3f;
begin
polyVector1 := ptf(v2.x - v1.x, v2.y - v1.y, v2.z - v1.z);
polyVector2 := ptf(v3.x - v1.x, v3.y - v1.y, v3.z - v1.z);
result := crossProduct(polyVector1, polyVector2);
//make sure to normalize(result) !
end; // getSurfaceNormal()
end.