-
Notifications
You must be signed in to change notification settings - Fork 41
/
PicoGK__Interop.cs
1010 lines (790 loc) · 46.6 KB
/
PicoGK__Interop.cs
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
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
//
// SPDX-License-Identifier: Apache-2.0
//
// PicoGK ("peacock") is a compact software kernel for computational geometry,
// specifically for use in Computational Engineering Models (CEM).
//
// For more information, please visit https://picogk.org
//
// PicoGK is developed and maintained by LEAP 71 - © 2023-2024 by LEAP 71
// https://leap71.com
//
// Computational Engineering will profoundly change our physical world in the
// years ahead. Thank you for being part of the journey.
//
// We have developed this library to be used widely, for both commercial and
// non-commercial projects alike. Therefore, we have released it under a
// permissive open-source license.
//
// The foundation of PicoGK is a thin layer on top of the powerful open-source
// OpenVDB project, which in turn uses many other Free and Open Source Software
// libraries. We are grateful to be able to stand on the shoulders of giants.
//
// LEAP 71 licenses this file to you under the Apache License, Version 2.0
// (the "License"); you may not use this file except in compliance with the
// License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, THE SOFTWARE IS
// PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED.
//
// See the License for the specific language governing permissions and
// limitations under the License.
//
using System.Numerics;
using System.Runtime.InteropServices;
using System.Text;
namespace PicoGK
{
// private interfaces to external PicoGK Runtime library
public partial class Library
{
public const int nStringLength = 255;
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "Library_Init", CharSet = CharSet.Ansi)]
private static extern void _Init(float fVoxelSizeMM);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "Library_Destroy", CharSet = CharSet.Ansi)]
private static extern void _Destroy();
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "Library_GetName", CharSet = CharSet.Ansi)]
private static extern void _GetName(StringBuilder psz);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "Library_GetVersion", CharSet = CharSet.Ansi)]
private static extern void _GetVersion(StringBuilder psz);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "Library_GetBuildInfo", CharSet = CharSet.Ansi)]
private static extern void _GetBuildInfo(StringBuilder psz);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "Library_VoxelsToMm")]
private static extern void _VoxelsToMm( in Vector3 vecVoxelCoordinate,
ref Vector3 vecMmCoordinate);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "Library_MmToVoxels")]
private static extern void _MmToVoxels( in Vector3 vecMmCoordinate,
ref Vector3 vecVoxelCoordinate);
}
public partial class Mesh : IDisposable
{
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "Mesh_hCreate")]
internal static extern IntPtr _hCreate();
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "Mesh_hCreateFromVoxels")]
internal static extern IntPtr _hCreateFromVoxels(IntPtr hVoxels);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "Mesh_bIsValid")]
private static extern bool _IsValid(IntPtr hThis);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "Mesh_Destroy")]
private static extern void _Destroy(IntPtr hThis);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "Mesh_nAddVertex")]
private static extern int _nAddVertex(IntPtr hThis,
in Vector3 V);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "Mesh_nVertexCount")]
private static extern int _nVertexCount(IntPtr hThis);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "Mesh_GetVertex")]
private static extern void _GetVertex(IntPtr hThis,
int nVertex,
ref Vector3 V);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "Mesh_nAddTriangle")]
private static extern int _nAddTriangle(IntPtr hThis,
in Triangle T);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "Mesh_nTriangleCount")]
private static extern int _nTriangleCount(IntPtr hThis);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "Mesh_GetTriangle")]
private static extern void _GetTriangle( IntPtr hThis,
int nTriangle,
ref Triangle T);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "Mesh_GetTriangleV")]
private static extern void _GetTriangleV( IntPtr hThis,
int nTriangle,
ref Vector3 vecA,
ref Vector3 vecB,
ref Vector3 vecC);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "Mesh_GetBoundingBox")]
private static extern void _GetBoundingBox( IntPtr hThis,
ref BBox3 oBBox);
// Dispose Pattern
~Mesh()
{
Dispose(false);
}
public void Dispose()
{
// Dispose of unmanaged resources.
Dispose(true);
// Suppress finalization.
GC.SuppressFinalize(this);
}
protected virtual void Dispose(bool bDisposing)
{
if (m_bDisposed)
{
return;
}
if (bDisposing)
{
// dispose managed state (managed objects).
// Nothing to do in this class
}
if (m_hThis != IntPtr.Zero)
{
_Destroy(m_hThis);
m_hThis = IntPtr.Zero;
}
m_bDisposed = true;
}
bool m_bDisposed = false;
internal IntPtr m_hThis = IntPtr.Zero;
}
public partial class Lattice : IDisposable
{
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "Lattice_hCreate")]
internal static extern IntPtr _hCreate();
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "Lattice_bIsValid")]
private static extern bool _bIsValid(IntPtr hThis);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "Lattice_Destroy")]
private static extern void _Destroy(IntPtr hThis);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "Lattice_AddSphere")]
private static extern void _AddSphere( IntPtr hThis,
in Vector3 vecCenter,
float fRadius);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "Lattice_AddBeam")]
private static extern void _AddBeam( IntPtr hThis,
in Vector3 vecA,
in Vector3 vecB,
float fRadiusA,
float fRadiusB,
bool bRoundCap);
// Dispose Pattern
~Lattice()
{
Dispose(false);
}
public void Dispose()
{
// Dispose of unmanaged resources.
Dispose(true);
// Suppress finalization.
GC.SuppressFinalize(this);
}
protected virtual void Dispose(bool bDisposing)
{
if (m_bDisposed)
{
return;
}
if (bDisposing)
{
// dispose managed state (managed objects).
// Nothing to do in this class
}
if (m_hThis != IntPtr.Zero)
{
_Destroy(m_hThis);
m_hThis = IntPtr.Zero;
}
m_bDisposed = true;
}
bool m_bDisposed = false;
internal IntPtr m_hThis = IntPtr.Zero;
}
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
delegate void CallbackScalarFieldTraverse(in Vector3 vec, float fValue);
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
delegate void CallbackVectorFieldTraverse(in Vector3 vec, in Vector3 vecValue);
public partial class Voxels : IDisposable
{
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "Voxels_hCreate")]
internal static extern IntPtr _hCreate();
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "Voxels_hCreateCopy")]
internal static extern IntPtr _hCreateCopy(IntPtr hSource);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "Voxels_bIsValid")]
private static extern bool _bIsValid(IntPtr hThis);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "Voxels_Destroy")]
private static extern void _Destroy(IntPtr hThis);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "Voxels_BoolAdd")]
private static extern void _BoolAdd( IntPtr hThis,
IntPtr hOther);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "Voxels_BoolSubtract")]
private static extern void _BoolSubtract( IntPtr hThis,
IntPtr hOther);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "Voxels_BoolIntersect")]
private static extern void _BoolIntersect( IntPtr hThis,
IntPtr hOther);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "Voxels_BoolAddSmooth")]
private static extern void _BoolAddSmooth( IntPtr hThis,
IntPtr hOther,
float fSmoothDistance);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "Voxels_Offset")]
private static extern void _Offset( IntPtr hThis,
float fOffset);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "Voxels_DoubleOffset")]
private static extern void _DoubleOffset( IntPtr hThis,
float fOffset1,
float fOffset2);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "Voxels_TripleOffset")]
private static extern void _TripleOffset( IntPtr hThis,
float fOffset);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "Voxels_Gaussian")]
private static extern void _Gaussian( IntPtr hThis,
float fDistance);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "Voxels_Median")]
private static extern void _Median( IntPtr hThis,
float fDistance);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "Voxels_Mean")]
private static extern void _Mean( IntPtr hThis,
float fDistance);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "Voxels_RenderMesh")]
private static extern void _RenderMesh( IntPtr hThis,
IntPtr hMesh);
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate float CallbackImplicitDistance(in Vector3 vec);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "Voxels_RenderImplicit")]
private static extern void _RenderImplicit( IntPtr hThis,
in BBox3 oBounds,
CallbackImplicitDistance Callback);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "Voxels_IntersectImplicit")]
private static extern void _IntersectImplicit( IntPtr hThis,
CallbackImplicitDistance Callback);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "Voxels_RenderLattice")]
private static extern void _RenderLattice( IntPtr hThis,
IntPtr hLattice);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "Voxels_ProjectZSlice")]
private static extern void _ProjectZSlice( IntPtr hThis,
float fStartX,
float fEndX);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "Voxels_bIsInside")]
private static extern bool _bIsInside( IntPtr hThis,
in Vector3 vecTestPoint);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "Voxels_bIsEqual")]
private static extern bool _bIsEqual( IntPtr hThis,
IntPtr hOther);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "Voxels_CalculateProperties")]
private extern static void _CalculateProperties( IntPtr hThis,
ref float pfVolume,
ref BBox3 oBBox);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "Voxels_GetSurfaceNormal")]
private extern static void _GetSurfaceNormal(IntPtr hThis,
in Vector3 vecSurfacePoint,
ref Vector3 vecSurfaceNormal);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "Voxels_bClosestPointOnSurface")]
private extern static bool _bClosestPointOnSurface( IntPtr hThis,
in Vector3 vecSearch,
ref Vector3 vecSurfacePoint);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "Voxels_bRayCastToSurface")]
private extern static bool _bRayCastToSurface( IntPtr hThis,
in Vector3 vecSearch,
in Vector3 vecNormal,
ref Vector3 vecSurfacePoint);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "Voxels_GetVoxelDimensions")]
private extern static void _GetVoxelDimensions( IntPtr hThis,
ref int nXOrigin,
ref int nYOrigin,
ref int nZOrigin,
ref int nXSize,
ref int nYSize,
ref int nZSize);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "Voxels_GetSlice")]
private extern static void _GetVoxelSlice( IntPtr hThis,
int nZSlice,
IntPtr afBuffer,
ref float fBackgroundValue);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "Voxels_GetInterpolatedSlice")]
private extern static void _GetInterpolatedVoxelSlice( IntPtr hThis,
float fZSlice,
IntPtr afBuffer,
ref float fBackgroundValue);
// Dispose Pattern
~Voxels()
{
Dispose(false);
}
public void Dispose()
{
// Dispose of unmanaged resources.
Dispose(true);
// Suppress finalization.
GC.SuppressFinalize(this);
}
protected virtual void Dispose(bool bDisposing)
{
if (m_bDisposed)
{
return;
}
if (bDisposing)
{
// dispose managed state (managed objects).
// Nothing to do in this class
}
if (m_hThis != IntPtr.Zero)
{
_Destroy(m_hThis);
m_hThis = IntPtr.Zero;
}
m_bDisposed = true;
}
bool m_bDisposed = false;
internal IntPtr m_hThis = IntPtr.Zero;
}
public partial class PolyLine : IDisposable
{
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "PolyLine_hCreate")]
public static extern IntPtr _hCreate(in ColorFloat clr);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "PolyLine_bIsValid")]
private static extern bool _bIsValid(IntPtr hThis);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "PolyLine_Destroy")]
private static extern void _Destroy(IntPtr hThis);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "PolyLine_nAddVertex")]
private static extern int _nAddVertex( IntPtr hThis,
in Vector3 vec);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "PolyLine_nVertexCount")]
private static extern int _nVertexCount(IntPtr hThis);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "PolyLine_GetVertex")]
private static extern void _GetVertex( IntPtr hThis,
int nIndex,
ref Vector3 vec);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "PolyLine_GetColor")]
private static extern void _GetColor( IntPtr hThis,
ref ColorFloat clr);
// Dispose Pattern
~PolyLine()
{
Dispose(false);
}
public void Dispose()
{
// Dispose of unmanaged resources.
Dispose(true);
// Suppress finalization.
GC.SuppressFinalize(this);
}
protected virtual void Dispose(bool bDisposing)
{
if (m_bDisposed)
{
return;
}
if (bDisposing)
{
// dispose managed state (managed objects).
// Nothing to do in this class
}
if (m_hThis != IntPtr.Zero)
{
_Destroy(m_hThis);
m_hThis = IntPtr.Zero;
}
m_bDisposed = true;
}
bool m_bDisposed = false;
internal IntPtr m_hThis = IntPtr.Zero;
}
public partial class Viewer : IDisposable
{
// Define delegates for the callback functions
[UnmanagedFunctionPointer(CallingConvention.Cdecl, CharSet = CharSet.Ansi)]
public delegate void InfoCallback( string strMessage,
bool bFatalError);
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
public delegate void UpdateCallback( IntPtr hViewer,
in Vector2 vecViewport,
ref ColorFloat clrBackground,
ref Matrix4x4 matModelViewProjection,
ref Matrix4x4 matModelTransform,
ref Matrix4x4 matStatic,
ref Vector3 vecEyePosition,
ref Vector3 vecEyeStatic);
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
public delegate void KeyPressedCallback( IntPtr hViewer,
int iKey,
int iScancode,
int iAction,
int iModifiers);
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
public delegate void MouseMovedCallback( IntPtr poViewer,
in Vector2 vecMousePos);
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
public delegate void MouseButtonCallback( IntPtr hViewer,
int iButton,
int iAction,
int iModifiers,
in Vector2 vecMousePos);
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
public delegate void ScrollWheelCallback( IntPtr hViewer,
in Vector2 vecScrollWheel,
in Vector2 vecMousePos);
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
public delegate void WindowSizelCallback( IntPtr hViewer,
in Vector2 vecWindowSize);
// Define the P/Invoke signature for Viewer_hCreate
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "Viewer_hCreate", CharSet = CharSet.Ansi)]
public static extern IntPtr _hCreate( string strWindowTitle,
in Vector2 vecSize,
InfoCallback fnInfoCallback,
UpdateCallback fnUpdateCallback,
KeyPressedCallback fnKeyPressedCallback,
MouseMovedCallback fnMouseMoveCallback,
MouseButtonCallback fnMouseButtonCallback,
ScrollWheelCallback fnScrollWheelCallback,
WindowSizelCallback fnWindowSizeCallback);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "Viewer_bIsValid")]
private static extern bool _bIsValid(IntPtr hThis);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "Viewer_Destroy")]
private static extern void _Destroy(IntPtr hThis);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "Viewer_RequestUpdate")]
private static extern void _RequestUpdate(IntPtr hThis);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "Viewer_bPoll")]
private static extern bool _bPoll(IntPtr hThis);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "Viewer_RequestScreenShot")]
private static extern bool _RequestScreenShot( IntPtr hThis,
string strScreenShotPath);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "Viewer_bLoadLightSetup")]
private static extern bool _bLoadLightSetup( IntPtr hThis,
byte [] abyDiffuseDdsBuffer,
int nDiffuseSize,
byte [] pSpecularDdsBuffer,
int nSpecularSize);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "Viewer_RequestClose")]
private static extern void _RequestClose(IntPtr hThis);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "Viewer_AddMesh")]
private static extern void _AddMesh( IntPtr hThis,
int nGroup,
IntPtr hMesh);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "Viewer_RemoveMesh")]
private static extern void _RemoveMesh( IntPtr hThis,
IntPtr hMesh);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "Viewer_AddPolyLine")]
private static extern void _AddPolyLine( IntPtr hThis,
int nGroupID,
IntPtr hPolyLine);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "Viewer_RemovePolyLine")]
private static extern void _RemovePolyLine( IntPtr hThis,
IntPtr hPolyLine);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "Viewer_SetGroupVisible")]
private static extern void _SetGroupVisible( IntPtr hThis,
int nGroupID,
bool bVisible);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "Viewer_SetGroupStatic")]
private static extern void _SetGroupStatic( IntPtr hThis,
int nGroupID,
bool bStatic);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "Viewer_SetGroupMaterial")]
private static extern void _SetGroupMaterial( IntPtr hThis,
int nGroupID,
in ColorFloat clr,
float fMetallic,
float fRoughness);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "Viewer_SetGroupMatrix")]
private static extern void _SetGroupMatrix( IntPtr hThis,
int nGroupID,
in Matrix4x4 mat);
// Dispose Pattern
~Viewer()
{
Dispose(false);
}
public void Dispose()
{
// Dispose of unmanaged resources.
Dispose(true);
// Suppress finalization.
GC.SuppressFinalize(this);
}
protected virtual void Dispose(bool bDisposing)
{
if (m_bDisposed)
{
return;
}
if (bDisposing)
{
// dispose managed state (managed objects).
// Nothing to do in this class
}
if (m_hThis != IntPtr.Zero)
{
_Destroy(m_hThis);
m_hThis = IntPtr.Zero;
}
m_bDisposed = true;
}
InfoCallback m_fnInfoCB;
UpdateCallback m_fnUpdateCB;
KeyPressedCallback m_fnKeyPressedCB;
MouseMovedCallback m_fnMouseMovedCB;
MouseButtonCallback m_fnMouseButtonCB;
ScrollWheelCallback m_fnScrollWheelCB;
WindowSizelCallback m_fnWindowSizeCB;
bool m_bDisposed = false;
IntPtr m_hThis = IntPtr.Zero;
}
public partial class OpenVdbFile : IDisposable
{
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "VdbFile_hCreate")]
public static extern IntPtr _hCreate();
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "VdbFile_hCreateFromFile", CharSet = CharSet.Ansi)]
private static extern IntPtr _hCreateFromFile(string strFile);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "VdbFile_bIsValid")]
private static extern bool _bIsValid(IntPtr hThis);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "VdbFile_Destroy")]
private static extern void _Destroy(IntPtr hThis);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "VdbFile_bSaveToFile", CharSet = CharSet.Ansi)]
private static extern bool _bSaveToFile( IntPtr hThis,
string strFileName);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "VdbFile_hGetVoxels")]
private static extern IntPtr _hGetVoxels( IntPtr hThis,
int nIndex);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "VdbFile_nAddVoxels", CharSet = CharSet.Ansi)]
private static extern int _nAddVoxels( IntPtr hThis,
string strFieldName,
IntPtr hVoxels);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "VdbFile_hGetScalarField")]
private static extern IntPtr _hGetScalarField( IntPtr hThis,
int nIndex);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "VdbFile_nAddScalarField", CharSet = CharSet.Ansi)]
private static extern int _nAddScalarField( IntPtr hThis,
string strFieldName,
IntPtr hField);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "VdbFile_hGetVectorField")]
private static extern IntPtr _hGetVectorField( IntPtr hThis,
int nIndex);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "VdbFile_nAddVectorField", CharSet = CharSet.Ansi)]
private static extern int _nAddVectorField( IntPtr hThis,
string strFieldName,
IntPtr hField);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "VdbFile_nFieldCount")]
private static extern int _nFieldCount(IntPtr hThis);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "VdbFile_GetFieldName", CharSet = CharSet.Ansi)]
private static extern void _GetFieldName( IntPtr hThis,
int nIndex,
StringBuilder psz);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "VdbFile_nFieldType")]
private static extern int _nFieldType( IntPtr hThis,
int nIndex);
// Dispose Pattern
~OpenVdbFile()
{
Dispose(false);
}
public void Dispose()
{
// Dispose of unmanaged resources.
Dispose(true);
// Suppress finalization.
GC.SuppressFinalize(this);
}
protected virtual void Dispose(bool bDisposing)
{
if (m_bDisposed)
{
return;
}
if (bDisposing)
{
// dispose managed state (managed objects).
// Nothing to do in this class
}
if (m_hThis != IntPtr.Zero)
{
_Destroy(m_hThis);
m_hThis = IntPtr.Zero;
}
m_bDisposed = true;
}
bool m_bDisposed = false;
internal IntPtr m_hThis = IntPtr.Zero;
}
public partial class ScalarField : IDisposable
{
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "ScalarField_hCreate")]
public static extern IntPtr _hCreate();
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "ScalarField_hCreateCopy")]
public static extern IntPtr _hCreateCopy(IntPtr hSource);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "ScalarField_hCreateFromVoxels")]
public static extern IntPtr _hCreateFromVoxels(IntPtr hVoxels);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "ScalarField_hBuildFromVoxels")]
public static extern IntPtr _hBuildFromVoxels(IntPtr hVoxels, float fScalarValue, float fSdThreshold);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "ScalarField_bIsValid")]
private static extern bool _bIsValid(IntPtr hThis);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "ScalarField_Destroy")]
private static extern void _Destroy(IntPtr hThis);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "ScalarField_SetValue")]
private static extern void _SetValue( IntPtr hThis,
in Vector3 vecPosition,
float fValue);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "ScalarField_bGetValue")]
private static extern bool _bGetValue( IntPtr hThis,
in Vector3 vecPosition,
ref float fValue);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "ScalarField_RemoveValue")]
private static extern bool _RemoveValue( IntPtr hThis,
in Vector3 vecPosition);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "ScalarField_GetVoxelDimensions")]
private extern static void _GetVoxelDimensions( IntPtr hThis,
ref int nXOrigin,
ref int nYOrigin,
ref int nZOrigin,
ref int nXSize,
ref int nYSize,
ref int nZSize);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "ScalarField_GetSlice")]
private extern static void _GetVoxelSlice( IntPtr hThis,
int nZSlice,
IntPtr afBuffer);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "ScalarField_TraverseActive")]
private extern static void _TraverseActive( IntPtr hThis,
CallbackScalarFieldTraverse pfn);
// Dispose Pattern
~ScalarField()
{
Dispose(false);
}
public void Dispose()
{
// Dispose of unmanaged resources.
Dispose(true);
// Suppress finalization.
GC.SuppressFinalize(this);
}
protected virtual void Dispose(bool bDisposing)
{
if (m_bDisposed)
{
return;
}
if (bDisposing)
{
// dispose managed state (managed objects).
// Nothing to do in this class
}
if (m_hThis != IntPtr.Zero)
{
_Destroy(m_hThis);
m_hThis = IntPtr.Zero;
}
m_bDisposed = true;
}
bool m_bDisposed = false;
internal IntPtr m_hThis = IntPtr.Zero;
}
public partial class VectorField : IDisposable
{
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "VectorField_hCreate")]
public static extern IntPtr _hCreate();
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "VectorField_hCreateCopy")]
public static extern IntPtr _hCreateCopy(IntPtr hSource);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "VectorField_hCreateFromVoxels")]
public static extern IntPtr _hCreateFromVoxels(IntPtr hVoxels);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "VectorField_hBuildFromVoxels")]
public static extern IntPtr _hBuildFromVoxels(IntPtr hVoxels, in Vector3 vecValue, float fSDThreshold);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "VectorField_bIsValid")]
private static extern bool _bIsValid(IntPtr hThis);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "VectorField_Destroy")]
private static extern void _Destroy(IntPtr hThis);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "VectorField_SetValue")]
private static extern void _SetValue( IntPtr hThis,
in Vector3 vecPosition,
in Vector3 vecValue);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "VectorField_bGetValue")]
private static extern bool _bGetValue( IntPtr hThis,
in Vector3 vecPosition,
ref Vector3 vecValue);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "VectorField_RemoveValue")]
private static extern bool _RemoveValue( IntPtr hThis,
in Vector3 vecPosition);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "VectorField_TraverseActive")]
private extern static void _TraverseActive( IntPtr hThis,
CallbackVectorFieldTraverse pfn);
// Dispose Pattern
~VectorField()
{
Dispose(false);
}
public void Dispose()
{
// Dispose of unmanaged resources.
Dispose(true);
// Suppress finalization.
GC.SuppressFinalize(this);
}
protected virtual void Dispose(bool bDisposing)
{
if (m_bDisposed)
{
return;
}
if (bDisposing)
{
// dispose managed state (managed objects).
// Nothing to do in this class
}
if (m_hThis != IntPtr.Zero)
{
_Destroy(m_hThis);
m_hThis = IntPtr.Zero;
}
m_bDisposed = true;
}
bool m_bDisposed = false;
internal IntPtr m_hThis = IntPtr.Zero;
}
public partial class FieldMetadata
{
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "Metadata_hFromVoxels")]
internal static extern IntPtr _hFromVoxels(IntPtr hVoxels);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "Metadata_hFromScalarField")]
internal static extern IntPtr _hFromScalarField(IntPtr hScalarField);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "Metadata_hFromVectorField")]
internal static extern IntPtr _hFromVectorField(IntPtr hVectorField);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "Metadata_Destroy")]
private static extern void _Destroy(IntPtr hThis);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "Metadata_nCount")]
private static extern int _nCount(IntPtr hThis);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "Metadata_nNameLengthAt")]
private static extern int _nNameLengthAt(IntPtr hThis, int nIndex);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "Metadata_bGetNameAt", CharSet = CharSet.Ansi)]
private static extern bool _bGetNameAt( IntPtr hThis, int nIndex, StringBuilder pszValueName, int nMaxStringLen);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "Metadata_nTypeAt", CharSet = CharSet.Ansi)]
private static extern int _nTypeAt(IntPtr hThis, string strName);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "Metadata_nStringLengthAt", CharSet = CharSet.Ansi)]
private static extern int _nStringLengthAt( IntPtr hThis, string strFieldName);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "Metadata_bGetStringAt", CharSet = CharSet.Ansi)]
private static extern bool _bGetStringAt(IntPtr hThis, string strFieldName, StringBuilder pszValue, int nMaxStringLen);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "Metadata_bGetFloatAt", CharSet = CharSet.Ansi)]
private static extern bool _bGetFloatAt(IntPtr hThis, string strFieldName, ref float fValue);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "Metadata_bGetVectorAt", CharSet = CharSet.Ansi)]
private static extern bool _bGetVectorAt(IntPtr hThis, string strFieldName, ref Vector3 vecValue);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "Metadata_SetStringValue", CharSet = CharSet.Ansi)]
private static extern void _SetStringValue(IntPtr hThis, string strFieldName, string strValue);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "Metadata_SetFloatValue", CharSet = CharSet.Ansi)]
private static extern void _SetFloatValue(IntPtr hThis, string strFieldName, float fValue);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "Metadata_SetVectorValue", CharSet = CharSet.Ansi)]
private static extern void _SetVectorValue(IntPtr hThis, string strFieldName, in Vector3 vecValue);
[DllImport(Config.strPicoGKLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "MetaData_RemoveValue", CharSet = CharSet.Ansi)]
private static extern void _RemoveValue(IntPtr hThis, string strFieldName);
~FieldMetadata()
{
Dispose(false);
}
public void Dispose()
{
// Dispose of unmanaged resources.
Dispose(true);
// Suppress finalization.
GC.SuppressFinalize(this);
}
protected virtual void Dispose(bool bDisposing)
{
if (m_bDisposed)
{
return;
}
if (bDisposing)
{
// dispose managed state (managed objects).
// Nothing to do in this class
}
if (m_hThis != IntPtr.Zero)
{
_Destroy(m_hThis);