forked from xeokit/xeokit.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1190 lines (1108 loc) · 68 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="xeokit - SDK for Browser-Based 3D BIM Visualization">
<meta name="author" content="Lindsay Kay">
<meta name="keywords" content="BIM,IFC,WebGL,JavaScript,Browser,BCF,Web,BIMServer,xeolabs,3D,3D Viewer,Lindsay Kay,xeokit,MedViz,ArchViz,Open Source,Browser,Viewer">
<title>xeokit - 3D Web Programming Toolkit for BIM and Engineering Visualization</title>
<link href="./vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="./css/business-frontpage.css" rel="stylesheet">
<!--<script src="vendor/jquery/jquery.slim.min.js"></script>-->
<link href="https://fonts.googleapis.com/css?family=Rubik" rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
<!-- Bootstrap core JavaScript -->
<script src="./vendor/jquery/jquery.min.js"></script>
<script src="./vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
</head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-664SYH8BEG"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-664SYH8BEG');
</script>
<body data-spy="scroll" data-target=".navbar" data-offset="50">
<nav class="navbar navbar-expand-lg navbar-dark bg-dark fixed-top ">
<!-- <div class="container">-->
<span style="color: #ffffff;"><a class="navbar-home" href="http://xeolabs.com">xeolabs</a>/<a
class="navbar-brand" href="./index.html">xeokit SDK</a></span>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarResponsive"
aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarResponsive">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link" href="./index.html?foo=0">Home</a>
</li>
<li class="nav-item dropdown">
<div class="dropdown-menu dropdown-menu-right" aria-labelledby="navbarDropdownLearn">
<a class="dropdown-item" href="./demo.html?projectId=RevitSamples&tab=models">Revit Sample IFC
Model</a>
<a class="dropdown-item" href="./demo.html?projectId=MAPPointCloud">1.6M Point Cloud Model</a>
<a class="dropdown-item" href="./demo.html?projectId=MAP&tab=objects">Full-Precision IFC Model</a>
<a class="dropdown-item" href="./demo.html?projectId=OTCConferenceCenter&tab=storeys">Conference
Center Model</a>
<a class="dropdown-item" href="./demo.html?projectId=Schependomlaan&tab=storeys">Schependomlaan
Model</a>
<a class="dropdown-item" href="./demo.html?projectId=Schependomlaan_selectedStorey&tab=storeys">Schependomlaan
Ground Floor</a>
</div>
</li>
<li class="nav-item">
<a class="nav-link" href="./index.html?foo=1#features">Features</a>
</li>
<li class="nav-item">
<a class="nav-link" href="./index.html?foo=1#faq">FAQ</a>
</li>
<li class="nav-item">
<a class="nav-link" href="./blog.html">Blog</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdownExamples" data-toggle="dropdown"
aria-haspopup="true" aria-expanded="false">
Examples
</a>
<div class="dropdown-menu dropdown-menu-right" aria-labelledby="navbarDropdownExamples">
<a class="dropdown-item" href="https://xeokit.github.io/xeokit-sdk/examples/index.html">SDK Examples</a>
<a class="dropdown-item" href="https://xeokit.github.io/xeokit-sdk/examples/bimviewer.html" target="_examples">BIMViewer Examples</a>
</div>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdownLearn" data-toggle="dropdown"
aria-haspopup="true" aria-expanded="false">
Developers
</a>
<div class="dropdown-menu dropdown-menu-right" aria-labelledby="navbarDropdownLearn">
<a class="dropdown-item"
href="https://www.notion.so/xeokit/xeokit-Documentation-4598591fcedb4889bf8896750651f74e">Documentation</a>
<a class="dropdown-item" href="https://xeokit.github.io/xeokit-sdk/examples/index.html">SDK Examples</a>
<a class="dropdown-item" href="https://xeokit.github.io/xeokit-sdk/examples/bimviewer.html" target="_examples">BIMViewer Examples</a>
<a class="dropdown-item" href="https://xeokit.github.io/xeokit-sdk/docs/" target="_docs">API
Reference</a>
<a class="dropdown-item" href="https://github.com/xeokit" target="_code">Source Code</a>
<a class="dropdown-item" href="https://xeokit.github.io/xeokit-model-conversion-tests/index.html">Model
Conversion</a>
</div>
</li>
<li class="nav-item">
<a class="nav-link" href="./index.html?foo=2#pricing">Pricing</a>
</li>
<li class="nav-item">
<a class="nav-link" href="./download.html">Download</a>
</li>
<!-- <li class="nav-item">-->
<!-- <a class="nav-link" href="./index.html?foo=3#connect">Connect</a>-->
<!-- </li>-->
</ul>
</div>
<!-- </div>-->
</nav>
<header class="bg-black home-header">
<div class="container h-100">
<div class="row h-100 align-items-center">
<div class="col-lg-12">
<h1 class="text-white mt-5 mb-2">xeokit: Web Programming Toolkit<br>for AEC Graphics</h1>
<p class="lead mb-5 text-white">xeokit is an open source 3D graphics SDK from <a href="http://xeolabs.com">xeolabs</a> for BIM and AEC.<br>Built to view huge models in the browser. Used by industry leaders.</p>
<p><a class="btn btn-primary btn-lg" href="https://xeokit.github.io/xeokit-sdk/examples/bimviewer.html">Run a Demo
»</a></p>
</div>
</div>
</div>
</header>
<!-- Icons Grid -->
<section class="features-icons bg-light text-center">
<div class="container">
<div class="row">
<div class="col-md-4 mb-4">
<div class="features-icons-item mx-auto mb-5 mb-lg-0 mb-lg-3">
<img
class="img-fluid rounded"
src="img/xeokit-viewer.png"
alt="A 3D IFC model viewer built on the xeokit SDK"><br><br>
<h3>Power</h3>
<p class="lead mb-0">Visualize complex, federated AEC models at full-precision, in all major browsers,
including mobile.</p>
</div>
</div>
<div class="col-md-4 mb-5">
<div class="features-icons-item mx-auto mb-5 mb-lg-0 mb-lg-3">
<img class="img-fluid" src="img/computer-sourcecode.png" alt=""><br><br>
<h3>Flexibility</h3>
<p class="lead mb-0">A complete JavaScript graphics toolkit for building BIM and AEC
viewing applications.</p>
</div>
</div>
<div class="col-md-4 mb-5">
<div class="features-icons-item mx-auto mb-0 mb-lg-3">
<img class="img-fluid" src="img/computer-gear.png" alt=""><br><br>
<h3>Freedom</h3>
<p class="lead mb-0">Open source components to build your own product, your way. Keep everything on
your
own servers.</p>
</div>
</div>
</div>
</div>
</section>
<section class="clients main-section">
<div class="container" >
<div class="row testimonial-row center-text">
<div class="col-lg-12">
<h1>Used by industry leaders</h1>
</div>
</div>
<div class="row no-gutters clients-wrap clearfix wow fadeInUp shadow"
style="visibility: visible; animation-name: fadeInUp;">
<div class="col-lg-3 col-md-4 col-xs-6">
<a href="./blog_xeokit_partners_with_openproject.html">
<div class="client-logo"><img
alt="" class="img-fluid" src="./img/userLogos/OpenProject-Logo-640x137.png"></div>
</a>
</div>
<div class="col-lg-3 col-md-4 col-xs-6">
<a href="./blog_xeokit_powering_planradar.html">
<div class="client-logo"><img
alt="" class="img-fluid" src="./img/userLogos/planradar-logo.png"></div>
</a>
</div>
<div class="col-lg-3 col-md-4 col-xs-6">
<a href="./blog_xeokit_partners_with_bimspot.html">
<div class="client-logo"><img
alt="" class="img-fluid" src="./img/userLogos/bimspot.png"></div>
</a>
</div>
<div class="col-lg-3 col-md-4 col-xs-6">
<a href="./blog_xeokit_partners_with_singular.html">
<div class="client-logo"><img
alt="" class="img-fluid" src="./img/userLogos/singular.jpg"></div>
</a>
</div>
<div class="col-lg-3 col-md-4 col-xs-6">
<a href="./blog_xeokit_partners_with_dstudio.html">
<div class="client-logo"><img
alt="" class="img-fluid" src="./img/userLogos/dstudio-logo.png"></div>
</a>
</div>
<div class="col-lg-3 col-md-4 col-xs-6">
<a href="https://www.eyeonim.nl/">
<div class="client-logo"><img
alt="" class="img-fluid" src="./img/userLogos/eyeonim-logo.png"></div>
</a>
</div>
<div class="col-lg-3 col-md-4 col-xs-6">
<a href="https://www.hok.com/">
<div class="client-logo"><img
alt="" class="img-fluid" src="./img/userLogos/hok-logo.jpg"></div>
</a>
</div>
<div class="col-lg-3 col-md-4 col-xs-6">
<a href="https://www.tribia.com/en/">
<div class="client-logo"><img alt=""
class="img-fluid" src="./img/userLogos/unizite-logo.png"></div>
</a>
</div>
<div class="col-lg-3 col-md-4 col-xs-6">
<a href="./blog_xeokit_partners_with_congrid.html">
<div class="client-logo"><img alt=""
class="img-fluid" src="./img/userLogos/congrid.png"></div>
</a>
</div>
<div class="col-lg-3 col-md-4 col-xs-6">
<a href="./blog_xeokit_partners_with_openproject.html">
<div class="client-logo"><img alt=""
class="img-fluid" src="./img/userLogos/dbi.jpg"></div>
</a>
</div>
<div class="col-lg-3 col-md-4 col-xs-6">
<a href="./blog_xeokit_powering_bimdata.html">
<div class="client-logo"><img alt=""
class="img-fluid" src="./img/userLogos/bimdata-logo.png"></div>
</a>
</div>
<div class="col-lg-3 col-md-4 col-xs-6">
<a href="https://www.fraunhofer.it/">
<div class="client-logo"><img alt=""
class="img-fluid" src="./img/userLogos/italia_190x52.gif"></div>
</a>
</div>
<div class="col-lg-3 col-md-4 col-xs-6">
<a href="https://buildsort.com/">
<div class="client-logo"><img alt=""
class="img-fluid" src="./img/userLogos/buildsort-logo.png"></div>
</a>
</div>
<div class="col-lg-3 col-md-4 col-xs-6">
<a href="https://systhema.nl/systhema/">
<div class="client-logo"><img alt=""
class="img-fluid" src="./img/userLogos/Systhema-S-Bestek.jpg"></div>
</a>
</div>
<div class="col-lg-3 col-md-4 col-xs-6">
<a href="https://www.gespro.fr">
<div class="client-logo"><img alt=""
class="img-fluid" src="./img/userLogos/gespro.png"></div>
</a>
</div>
<div class="col-lg-3 col-md-4 col-xs-6">
<a href="https://www.umb.edu/">
<div class="client-logo"><img alt=""
class="img-fluid" src="./img/userLogos/umas-logo.png"></div>
</a>
</div>
<div class="col-lg-3 col-md-4 col-xs-6">
<a href="https://fonn.com/features/bim">
<div class="client-logo"><img alt=""
class="img-fluid" src="./img/userLogos/fonn.png"></div>
</a>
</div>
<div class="col-lg-3 col-md-4 col-xs-6">
<a href="https://www.tekhne.ch/">
<div class="client-logo"><img alt=""
class="img-fluid" src="./img/userLogos/tekhne.png"></div>
</a>
</div>
<div class="col-lg-3 col-md-4 col-xs-6">
<a href="./blog_creoox_becomes_xeokit_sales_partner.html">
<div class="client-logo"><img alt=""
class="img-fluid" src="./img/userLogos/creoox.png"></div>
</a>
</div>
<div class="col-lg-3 col-md-4 col-xs-6">
<a href="https://www.rwth-aachen.de/go/id/a/?lidx=1">
<div class="client-logo"><img src="./img/userLogos/rwth-aachen-university.png"
class="img-fluid" alt=""></div>
</a>
</div>
<div class="col-lg-3 col-md-4 col-xs-6">
<a href="https://www.e-construmarket.com.br">
<div class="client-logo"><img src="./img/trustedByLogos/construmarket.png"
class="img-fluid" alt=""></div>
</a>
</div>
<div class="col-lg-3 col-md-4 col-xs-6">
<a href="https://www.blindside.pro/">
<div class="client-logo"><img src="./img/userLogos/blindSide.png"
class="img-fluid" alt=""></div>
</a>
</div>
<div class="col-lg-3 col-md-4 col-xs-6">
<a href="https://tmm-group.de/">
<div class="client-logo"><img src="./img/userLogos/tmm.png"
class="img-fluid" alt=""></div>
</a>
</div>
<div class="col-lg-3 col-md-4 col-xs-6">
<a href="https://www.build365.de">
<div class="client-logo"><img src="./img/userLogos/Build365.png"
class="img-fluid" alt=""></div>
</a>
</div>
<div class="col-lg-3 col-md-4 col-xs-6">
<a href="https://cloudbrixx.de/">
<div class="client-logo"><img src="./img/userLogos/cloudbrixx.png" class="img-fluid" alt=""></div>
</a>
</div>
<div class="col-lg-3 col-md-4 col-xs-6">
<a href="https://ark-bim.github.io/">
<div class="client-logo"><img src="./img/userLogos/ark-bim.png" class="img-fluid" alt=""></div>
</a>
</div>
<div class="col-lg-3 col-md-4 col-xs-6">
<a href="https://www.cmdbuild.org/en/homepage">
<div class="client-logo"><img src="./img/userLogos/cmd-build.png" class="img-fluid" alt=""></div>
</a>
</div>
<div class="col-lg-3 col-md-4 col-xs-6">
<a href="https://www.tribia.com">
<div class="client-logo"><img src="./img/userLogos/tribia.jpg" class="img-fluid" alt=""></div>
</a>
</div>
<div class="col-lg-3 col-md-4 col-xs-6">
<a href="https://bexelconsulting.com/">
<div class="client-logo"><img src="./img/userLogos/bexel.jpeg" class="img-fluid" alt=""></div>
</a>
</div>
<div class="col-lg-3 col-md-4 col-xs-6">
<a href="https://www.tue.nl/en/">
<div class="client-logo"><img src="./img/userLogos/eindhoven-logo.png" class="img-fluid" alt=""></div>
</a>
</div>
<div class="col-lg-3 col-md-4 col-xs-6">
<a href="https://www.cadlinesw.com/">
<div class="client-logo"><img src="./img/userLogos/cadline.png" class="img-fluid" alt=""></div>
</a>
</div>
<div class="col-lg-3 col-md-4 col-xs-6">
<a href="https://pmgnet.de/">
<div class="client-logo"><img src="./img/userLogos/pmg.png" class="img-fluid" alt=""></div>
</a>
</div>
</div>
<div class="row mt-5 mb-5">
<div class="col-sm-12 text-center">
<a class="btn btn-lg btn-outline-primary border-2" href="https://www.notion.so/xeokit/Who-is-using-xeokit-4066f45365ee4959bc850896fc53a801">Read user stories >></a>
</div>
</div>
</div>
</section>
<section id="features" class="main-section alabaster">
<div class="container">
<div class="row testimonial-row center-text">
<div class="col-lg-12 ">
<h1>Features</h1>
</div>
</div>
<div class="row testimonial-row">
<div class="col-lg-6">
<h3>Display your Models in the Browser</h3>
<p>Get your models on the Web using a toolkit of production-proven components
that save you costly research, development and maintenance.</p>
<ul>
<li><b>Load models from your own server</b>.<br>Keep data, viewer and conversion tools on your
own servers. No overloaded cloud services, or unpredictable costs. No hassles with data
protection laws.
</li>
<li><b>Works in all major browsers</b>.<br>Including mobile, without plugins.</li>
<li><b>Completly open source</b>.<br>You get the <a
href="https://github.com/xeokit"
target="_code">source code</a>. Customize and extend it however you want.
</li>
<li><b>Open community of experts</b>.<br>Join our community of 3D Web programming experts and
industry leaders.
Share our tools and get support.
</li>
<li><b>Training resources</b>.<br>Including <a
href="https://xeokit.github.io/xeokit-sdk/examples/"
target="_examples">examples</a>,
<a
href="https://xeokit.github.io/xeokit-sdk/docs/" target="_docs">API docs</a> and <a
href="https://www.notion.so/xeokit/xeokit-Documentation-4598591fcedb4889bf8896750651f74e"
target="_wiki">tutorials</a>.
</li>
<li><b>Tap into xeolabs' ongoing research and development</b>.<br>Get started quickly and lower your
costs. Benefit from new features as xeokit continues to develop.
</li>
</ul>
<br>
<br>
<h3>JavaScript Programming Toolkit</h3>
<p>A toolkit of reusable solutions based on <a href="https://xeolabs.com/work.html"
target="_portfolio">10+ years experience</a>
visualizing large engineering and medical models in the browser.</p>
<ul>
<li><b>Fast loading of huge models</b>.<br>One of the most compact geometry formats on the Web.
Loads hundreds of megabytes in seconds.
</li>
<li><b>Fast rendering of many objects</b>.<br>A hardware-accelerated renderer, purpose-built for
viewing highly-detailed, real-world engineering models.
</li>
<li><b>Double-precision geometry</b>.<br>Load models with double-precision coordinates. Render them
accurately in the browser, without loss of precision.
</li>
<li><b>Loads a variety of model formats</b>.<br>Load many models into the same scene, including IFC (2x3 and 4.3), glTF, OBJ, STL, 3DXML, LAZ/LAS, CityJSON, XKT and more.
</li>
<li><b>Save and load BCF viewpoints</b>.<br> Build interoperable BIM apps. Connect your application
with the BIM ecosystem.
</li>
<li><b>A complete 3D toolkit</b>.<br>Dynamic scenes, transforms, animations, physically-based
materials, dynamic light sources, ambient shadows, interactive section planes, annotations,
X-ray, highlight, selection, colorize objects and more.
</li>
`
</ul>
<br>
<h3>Plugins and Tools Library</h3>
<p>A growing library of plugins and pipeline tools to accelerate the development of your application,
including:</p>
<ul>
<li><b>Navigation</b><br>
<a href="https://xeokit.github.io/xeokit-sdk/docs/class/src/plugins/StoreyViewsPlugin/StoreyViewsPlugin.js~StoreyViewsPlugin.html"
target="_docs">Plan
Views</a>, <a
href="https://xeokit.github.io/xeokit-sdk/docs/class/src/plugins/SectionPlanesPlugin/SectionPlanesPlugin.js~SectionPlanesPlugin.html"
target="_docs">Section Planes</a>, <a
href="https://xeokit.github.io/xeokit-sdk/docs/class/src/plugins/TreeViewPlugin/TreeViewPlugin.js~TreeViewPlugin.html"
target="_docs">Tree
Views</a>, <a
href="https://xeokit.github.io/xeokit-sdk/docs/class/src/extras/ContextMenu/ContextMenu.js~ContextMenu.html"
target="_docs">Context
Menus</a>, <a
href="https://xeokit.github.io/xeokit-sdk/docs/class/src/plugins/NavCubePlugin/NavCubePlugin.js~NavCubePlugin.html"
target="_docs">NavCube</a>,
<a href="https://xeokit.github.io/xeokit-sdk/docs/class/src/plugins/AxisGizmoPlugin/AxisGizmoPlugin.js~AxisGizmoPlugin.html"
target="_docs">Gnomon</a>
</li>
<li><b>Measurement</b><br><a
href="https://xeokit.github.io/xeokit-sdk/docs/class/src/plugins/DistanceMeasurementsPlugin/DistanceMeasurementsPlugin.js~DistanceMeasurementsPlugin.html"
target="_docs">Distance
Measurement</a>, <a
href="https://xeokit.github.io/xeokit-sdk/docs/class/src/plugins/AngleMeasurementsPlugin/AngleMeasurementsPlugin.js~AngleMeasurementsPlugin.html"
target="_docs">Angle
Measurement</a>
</li>
<li><b>Collaboration</b><br>
<a href="https://xeokit.github.io/xeokit-sdk/docs/class/src/plugins/AnnotationsPlugin/AnnotationsPlugin.js~AnnotationsPlugin.html"
target="_docs">3D Annotations</a>,
<a href="https://xeokit.github.io/xeokit-sdk/docs/class/src/plugins/BCFViewpointsPlugin/BCFViewpointsPlugin.js~BCFViewpointsPlugin.html"
target="_docs">BCF Viewpoints</a>
</li>
<li><b>Loaders</b><br>
<a href="https://xeokit.github.io/xeokit-sdk/docs/class/src/plugins/WebIFCLoaderPlugin/WebIFCLoaderPlugin.js~WebIFCLoaderPlugin.html"
target="_docs">IFC</a>,
<a href="https://xeokit.github.io/xeokit-sdk/docs/class/src/plugins/GLTFLoaderPlugin/GLTFLoaderPlugin.js~GLTFLoaderPlugin.html"
target="_docs">glTF</a>,
<a href="https://xeokit.github.io/xeokit-sdk/docs/class/src/plugins/CityJSONLoaderPlugin/CityJSONLoaderPlugin.js~CityJSONLoaderPlugin.html"
target="_docs">CityJSON</a>, <a
href="https://xeokit.github.io/xeokit-sdk/docs/class/src/plugins/OBJLoaderPlugin/OBJLoaderPlugin.js~OBJLoaderPlugin.html"
target="_docs">OBJ</a>, <a
href="https://xeokit.github.io/xeokit-sdk/docs/class/src/plugins/STLLoaderPlugin/STLLoaderPlugin.js~STLLoaderPlugin.html"
target="_docs">STL</a>, <a
href="https://xeokit.github.io/xeokit-sdk/docs/class/src/plugins/XKTLoaderPlugin/XKTLoaderPlugin.js~XKTLoaderPlugin.html"
target="_docs">XKT</a>, <a
href="https://xeokit.github.io/xeokit-sdk/docs/class/src/plugins/XML3DLoaderPlugin/XML3DLoaderPlugin.js~XML3DLoaderPlugin.html"
target="_docs">3DXML</a>, ...
</li>
</ul>
<br>
<h3>Open Community</h3>
<p>Join an open community of 3D Web programming experts. Share our tools and get support.</p>
<ul>
<li><a href="https://github.com/xeokit" target="_code">Source Code</a></li>
<li><a href="https://xeokit.github.io/xeokit-sdk/examples/#BIMOffline_XKT_OTCConferenceCenter"
target="_demo">Live
Examples</a></li>
<li><a href="https://xeokit.github.io/xeokit-sdk/docs/" target="_docs">Documentation</a></li>
<li><a href="https://www.notion.so/xeokit/xeokit-Documentation-4598591fcedb4889bf8896750651f74e"
target="_wiki">Tutorials</a></li>
</ul>
</div>
<div class="col-lg-6">
<figure class="figure">
<a href="./demo.html?projectId=OTCConferenceCenter&tab=storeys"><img
class="img-fluid rounded"
src="img/xeokit-viewer.png"
alt="A 3D IFC model viewer built on the xeokit SDK"></a>
<figcaption class="figure-caption text-center">A bundled BIM viewer to get you started in minutes -
<a href="./demo.html?projectId=OTCConferenceCenter&tab=storeys"
target="_demo">try it out!</a></figcaption>
</figure>
<br><br>
<figure class="figure">
<a href="https://xeokit.github.io/xeokit-sdk/docs/class/src/viewer/Plugin.js~Plugin.html"
target="_wiki"><img
class="img-fluid"
src="img/computer-planview.png"
alt=""></a>
<figcaption class="figure-caption text-center">Plugins for real-world BIM and CAD use cases - <a
href="https://xeokit.github.io/xeokit-sdk/docs/class/src/viewer/Plugin.js~Plugin.html"
target="_wiki">browse the API docs</a></figcaption>
</figure>
<br><br>
<figure class="figure">
<a href="https://xeokit.github.io/xeokit-sdk/examples/#loading_3DXML_TreeView"
target="_examples"><img
class="img-fluid"
src="img/computer-gear.png"
alt="Importing 3DXML from SolidWorks"></a>
<figcaption class="figure-caption text-center">Load CAD models from SolidWorks - <a
href="https://xeokit.github.io/xeokit-sdk/examples/#loading_3DXML_TreeView"
target="_examples">try
a demo</a></figcaption>
</figure>
<br><br>
<figure class="figure">
<a href="https://xeokit.github.io/xeokit-sdk/docs/class/src/plugins/LASLoaderPlugin/LASLoaderPlugin.js~LASLoaderPlugin.html"
target="_docs"><img class="img-fluid"
src="img/computer-laz.png"
alt=""></a>
<figcaption class="figure-caption text-center">Load point clouds from LAS/LAZ - <a
href="https://xeokit.github.io/xeokit-sdk/docs/class/src/plugins/LASLoaderPlugin/LASLoaderPlugin.js~LASLoaderPlugin.html"
target="_docs">browse the API docs</a>
</figcaption>
</figure>
<br><br>
<figure class="figure">
<a href="https://xeokit.github.io/xeokit-sdk/docs/" target="_docs"><img class="img-fluid"
src="img/computer-sourcecode.png"
alt=""></a>
<figcaption class="figure-caption text-center">A rich programming toolkit - <a
href="https://xeokit.github.io/xeokit-sdk/docs/" target="_docs">browse the API docs</a>
</figcaption>
</figure>
<br><br>
</div>
</div>
</div>
</section>
<section id="testimonials" class="main-section">
<div class="container">
<div class="row testimonial-row center-text">
<div class="col-lg-12">
<h1>What xeokit's users say</h1>
</div>
</div>
<div class="row testimonial-row">
<div class="col-sm-9">
<blockquote><p><b>xeokit is a success enabler for our customers.</b> Incredibly fast load times and
super
high-performance rendering, even on mobile browsers. Built in a modular way that allowed us
to easily customize its behaviour, while allowing us to create a differentiated navigation
experience.
</p>
<p>Clean code, with the ability to inspect its internals, was key to our development experience.
Teams focused on simple things can start using it with less than ten lines of JavaScript, while
more advanced users will find that xeokit can be adapted to meet their advanced use cases.</p>
<cite><a href="https://www.linkedin.com/in/toni-mart%C3%AD-392604103/" target="_external">Toni Marti</a>, Software Artist at <a href="https://unizite.info/" target="_external">uniZite
AS</a></cite>
</blockquote>
</div>
<div class="col-sm-3">
<a href="https://unizite.info/" target="_external"><img src="img/logos/unizite-logo.png" class="testimonial-logo-container"
style="width: 150px;"></a>
</div>
</div>
<div class="row testimonial-row">
<div class="col-sm-9">
<blockquote><p><b>xeokit's rich features and detailed documentation</b> allow us to create interactive and
customizable web visualization experiences for large-scale BIM models. It also provides us with
the possibilities to retrieve data from BIM model for further experiments and insights.</p>
<cite><a href="https://www.linkedin.com/in/chloe-c-s-955a22114/">Chloe Sun</a>, Design Technology
Specialist at <a href="https://www.hok.com">HOK Architects</a></cite>
</blockquote>
</div>
<div class="col-sm-3">
<a href="https://www.hok.com" target="_external"><img src="img/logos/hok-logo.jpg" style="width: 100px;"
class="testimonial-logo-container"></a>
</div>
</div>
<div class="row testimonial-row">
<div class="col-sm-9">
<blockquote><p><b>xeokit's unmatched loading and rendering speed</b> enables us to create interactive and
customizable Web visualization experiences for large BIM models, even when loading many large models
simultaneously. The code is clear and properly documented, the examples are sufficient to
understand how everything works, and the API is explicit and complete. These qualities, in
combination with xeokit's experienced and skilled community, make xeokit a viable alternative to
larger engines such as AutoDesk Forge and Unity.</p>
<cite><a href="https://www.linkedin.com/in/hugo-duroux-46262166/" target="_external">Hugo Duroux</a>, Technical
Director at <a href="https://bimdata.io" target="_external">BIMData.io</a></cite>
</blockquote>
</div>
<div class="col-sm-3">
<a href="https://bimdata.io" target="_external"><img src="img/logos/bimdata-logo.png" style="width: 150px;"
class="testimonial-logo-container"></a><br>
</div>
</div>
<!-- <div class="row testimonial-row">-->
<!-- <div class="col-sm-9">-->
<!-- <blockquote><b>Amazing, unmatched loading and rendering speed</b>, we are able to create interactive and-->
<!-- customizable web visualization experience for large-scale BIM models. It also provides us with the-->
<!-- possibilities to retrieve data from BIM model for further experiments and insights.-->
<!-- <cite><a href="https://www.linkedin.com/in/hugo-duroux-46262166/">Hugo Duroux</a>, Technical Director at <a href="https://planradar.com">PlanRadar.com</a></cite>-->
<!-- </blockquote>-->
<!-- </div>-->
<!-- <div class="col-sm-3">-->
<!-- <a href="https://planradar.com"><img src="img/logos/plan-radar.jpg" style="width: 150px;" class="testimonial-logo-container"></a>-->
<!-- </div>-->
<!-- </div>-->
<div class="row testimonial-row">
<div class="col-sm-9">
<blockquote><p><b>We have been very impressed with the xeokit SDK's features.</b> Of particular note is
xeokit's highly efficient binary .XKT model format, which makes loading and rendering large
models faster than ever before. With the wide-ranging feature set offered by the SDK, we have
been able to meet most of our product goals so far.</p>
<p>Our developers have also spoken about their positive experience. They noted the active
development of the project and the quick and helpful responses from xeolabs whenever they had
any issues.</p>
<cite><a href="https://www.linkedin.com/in/christoph-degendorfer-712287b5" target="_external">Christoph Degendorfer</a>,
- Co-Founder & CEO at <a href="https://bimspot.io" target="_external">bimspot.io</a></cite>
</blockquote>
</div>
<div class="col-sm-3">
<a href="https://bimspot.io" target="_external"><img src="img/logos/bimspot-logo.png" style="width: 150px;"
class="testimonial-logo-container"></a><br>
</div>
</div>
</div>
</section>
<section id="pricing" class=" main-section">
<div class="container">
<div class="row testimonial-row center-text">
<div class="col-lg-12">
<h1>Pricing</h1>
<br>
<p>The xeokit SDK is open source software, licensed under the <a
href="https://github.com/xeokit/xeokit-sdk/blob/master/LICENSE.txt"
target="_license">Affero GPL V3</a> license.</p><p>We also offer custom and permissive licenses for
enterprise, with full support.</p>
</div>
</div>
<div class="row testimonial-row">
<div class="col-md-6 mb-5">
<div class="card h-100 shadow">
<div class="card-header bg-white">
<h4 class="card-title">Open Source License</h4>
</div>
<div class="card-body">
<ul>
<li>Under the terms of the <a
href="https://github.com/xeokit/xeokit-sdk/blob/master/LICENSE.txt"
target="_license">Affero GPL V3</a></li>
<li><b>FREE</b></li>
</ul>
<!-- <p><b>Permissions</b></p>-->
<!-- <ul>-->
<!-- <li>Commercial use</li>-->
<!-- <li>Distribute source code</li>-->
<!-- <li>Modify source code</li>-->
<!-- <li>Patent use</li>-->
<!-- <li>Private use</li>-->
<!-- </ul>-->
<!-- <p><b>Conditions</b></p>-->
<!-- <ul>-->
<!-- <li>Disclose source code</li>-->
<!-- <li>License and copyright notice</li>-->
<!-- <li>Network use is distribution</li>-->
<!-- <li>Don't change license</li>-->
<!-- <li>State changes made to source code</li>-->
<!-- </ul>-->
<!-- <p><b>Limitations</b></p>-->
<!-- <ul>-->
<!-- <li>No liability</li>-->
<!-- <li>No warranty</li>-->
<!-- </ul>-->
</div>
</div>
</div>
<div class="col-md-6 mb-5">
<div class="card h-100 shadow">
<div class="card-header bg-white">
<h4 class="card-title">Custom License</h4>
</div>
<div class="card-body">
<ul>
<li>Offered through our partner <a href="https://creoox.com/en/3d-viewer/contact-3d-viewer/?option=Enterprise">Creoox
AG</a>
</li>
<li>Custom and permissive license</li>
<li>No open source restrictions</li>
<li>High level support</li>
<li>Flexible terms</li>
</ul>
</div>
<div class="card-footer">
<a href="https://creoox.com/en/3d-viewer/contact-3d-viewer/" class="btn btn-primary">Get in
Contact >></a>
</div>
</div>
</div>
</div>
<div class="row testimonial-row">
<div class="col-lg-12">
<h3>What's included</h3>
<p>The licenses give you everything in the <a href="https://github.com/xeokit">xeokit repositories</a>
on GitHub and npm, including:</p>
<table class="table table-bordered shadow">
<tbody>
<tr>
<td><a href="https://github.com/xeokit/xeokit-sdk" target="_external"><span class="nowrap">xeokit-sdk</span></a>
</td>
<td>The xeokit SDK and plugins.</td>
</tr>
<tr>
<td><a href="https://xeokit.github.io/xeokit-bim-viewer/" target="_code"><span
class="nowrap">xeokit-bim-viewer</span></a>
</td>
<td>A customizable IFC viewer built on xeokit, in collaboration with <a href="https://openproject.org"
target="_external">OpenProject</a>
- try a <a href="./demo.html?projectId=OTCConferenceCenter&tab=storeys">demo</a>!
</td>
</tr>
<tr>
<td><a href="https://github.com/xeokit/xeokit-convert" target="_code"><span
class="nowrap">xeokit-convert</span></a>
</td>
<td>CLI tool and JavaScript toolkit to convert various AEC model formats to xeokit's optimized native XKT model format.
</td>
</tr>
<tr>
<td><a href="https://github.com/bimspot/xeokit-metadata" target="_code"><span
class="nowrap">xeokit-metadata</span></a></td>
<td>Multi-platform CLI tool from <a href="https://bimspot.io" target="_external">bimspot</a> for extracting
structural metadata
from IFC STEP files for loading into xeokit.
</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="row testimonial-row">
<div class="col-lg-12">
<h3>Enterprise tools</h3>
<p>We also offer closed-source tools, under a custom license:</p>
<table class="table table-bordered shadow">
<tbody>
<tr>
<td><a href="https://creoox.com/en/contact/" target="_code"><span
class="nowrap">ifc2gltf</span></a></td>
<td>High-performance CLI tool from <a href="https://creoox.com/en/contact/" target="_external">Creeox AG</a> for converting
IFC (2x3 and 4.3) into glTF and metadata files, for convert2xkt to convert into XKT, for fast loading into xeokit.
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</section>
<section id="faq" class="main-section alabaster">
<div class="container">
<div class="row testimonial-row center-text">
<div class="col-lg-12">
<h1>FAQ</h1>
</div>
</div>
<div class="row">
<div class="col-12 mx-auto">
<div class="accordion shadow" id="xeokitFaq">
<div class="card">
<div class="card-header p-2" id="headingSeven">
<h5 class="mb-0">
<button class="btn btn-link collapsed" type="button" data-toggle="collapse"
data-target="#collapseSeven" aria-expanded="false"
aria-controls="collapseSeven">
Q: What makes xeokit special?
</button>
</h5>
</div>
<div id="collapseSeven" class="collapse" aria-labelledby="headingSeven"
data-parent="#xeokitFaq">
<div class="card-body">
<b>Answer: </b><br><br>
<p>When it comes to high-performance BIM/AEC visualization, xeokit has several
capabilities
that set it apart from standard Web graphics libraries:</p>
<ul>
<li><b>Fast loading</b> - ultra-compact native file geometry format loads hundreds
of thousands of objects over the Web in seconds.
</li>
<li><b>Fast rendering</b> - purpose-built to fluidly visualize hundreds of thousands
of objects in the browser.
</li>
<li><b>Double-precision rendering</b> - accurately view
building model geometry in global coordinates.
</li>
<li><b>BIM/AEC-friendly programming API</b> - a complete JavaScript graphics
programming
toolkit, with an API designed specially for BIM/AEC applications.
</li>
<li><b>Plugins</b> - a library of plugins to accelerate BIM/AEC application
development.
</li>
<li><b>Freedom</b> - host viewer, models and conversion tools on your own servers -
no issues with data sovereignty, no reliance on 3rd-party cloud services.
</li>
</ul>
</div>
</div>
</div>
<div class="card">
<div class="card-header p-2" id="headingWhoIsUsing">
<h5 class="mb-0">
<button class="btn btn-link collapsed" type="button" data-toggle="collapse"
data-target="#collapseWhoIsUsing" aria-expanded="false"
aria-controls="collapseWhoIsUsing">
Q: Who is using xeokit?
</button>
</h5>
</div>
<div id="collapseWhoIsUsing" class="collapse" aria-labelledby="headingWhoIsUsing"
data-parent="#xeokitFaq">
<div class="card-body">
<b>Answer: </b><br><br>
<p>A growing, international community of industry leaders, researchers and hackers.</p>
<p>
<a href="https://www.notion.so/xeokit/Who-is-using-xeokit-4066f45365ee4959bc850896fc53a801"><b>Read
more</b></a> about what users have built with xeokit so far.</p>
</div>
</div>
</div>
<div class="card">
<div class="card-header p-2" id="headingSix">
<h5 class="mb-0">
<button class="btn btn-link collapsed" type="button" data-toggle="collapse"
data-target="#collapseSix" aria-expanded="false" aria-controls="collapseSix">
Q: Who are the people behind xeokit?
</button>
</h5>
</div>
<div id="collapseSix" class="collapse" aria-labelledby="headingSix" data-parent="#xeokitFaq">
<div class="card-body">
<b>Answer: </b><br><br>
<p>The xeokit SDK is a partnership between:</p>
<ul>
<li><b><a href="http://xeolabs.com">xeolabs</a></b> - created xeokit in 2019, based
on 10+ years experience visualizing 3D BIM and STEM in the browser.
</li>
<li><b><a href="https://creoox.com/en">Creoox AG</a></b> - xeokit's official and
exclusive business partner, handling sales and CRM, and supporting business
development.
</li>
</ul>
</div>
</div>
</div>
<div class="card">
<div class="card-header p-2" id="headingOne">
<h5 class="mb-0">
<button class="btn btn-link" type="button" data-toggle="collapse"
data-target="#collapseOne" aria-expanded="false" aria-controls="collapseOne">
Q: Which WebGL library does xeokit use?
</button>
</h5>
</div>
<div id="collapseOne" class="collapse" aria-labelledby="headingOne"
data-parent="#xeokitFaq">
<div class="card-body">
<b>Answer: </b><br><br>
The xeokit SDK has its own WebGL engine, which is specially designed to
visualize complex, full-precision BIM and engineering models.<br><br>
The engine uses our own special blend of techniques to interactively render
models containing hundreds of thousands of individual parts, in all major browsers,
including mobile.<br><br>
The engine also distinguishes itself by supporting double-precision
rendering on WebGL, which only supports single-precision natively. This means that we
can render buildings
in their original, global coordinate system, without rounding errors. [<a
href="https://xeokit.github.io/xeokit-sdk/examples/#BIMOffline_XKT_DoublePrecision_MAP"
target="_examples">Try a demo</a>]
</div>
</div>
</div>
<div class="card">
<div class="card-header p-2" id="headingTwo">
<h5 class="mb-0">
<button class="btn btn-link collapsed" type="button" data-toggle="collapse"
data-target="#collapseTwo" aria-expanded="false" aria-controls="collapseTwo">
Q: What file formats does xeokit load?
</button>
</h5>
</div>
<div id="collapseTwo" class="collapse" aria-labelledby="headingTwo" data-parent="#xeokitFaq">
<div class="card-body">
<b>Answer: </b><br><br>The xeokit SDK loads (at least) IFC (2x3 & 4.3), CityJSON, glTF, OBJ,
3DXML, LAS, LAZ and XKT.<br><br>
XKT is xeokit's highly-optimized native geometry format, which allows xeokit to load
hundreds
of thousands of full-precision objects in seconds. XKT files are converted from various
source formats using open source CLI tools.<br><br>
<b>Learn more:</b><br><br>
<ul>
<li><a
href="https://www.notion.so/xeokit/Viewing-an-IFC-Model-with-xeokit-c373e48bc4094ff5b6e5c5700ff580ee">Viewing
an IFC Model with xeokit</a></li>
<li><a
href="https://www.notion.so/xeokit/Viewing-a-Point-Cloud-with-xeokit-c45cdaae64514170be91c37d6827c9ca">Viewing
a Point Cloud with xeokit</a></li>
<li><a
href="https://www.notion.so/xeokit/Viewing-Multiple-Models-with-xeokit-71b73627d97840f7887275ea6ac4ed4a">Viewing
Multiple Models with xeokit</a></li>
</ul>
</div>
</div>
</div>
<div class="card">
<div class="card-header p-2" id="headingFour">
<h5 class="mb-0">
<button class="btn btn-link collapsed" type="button" data-toggle="collapse"
data-target="#collapseFour" aria-expanded="false" aria-controls="collapseFour">
Q: How do I view my IFC file with xeokit?
</button>
</h5>
</div>
<div id="collapseFour" class="collapse" aria-labelledby="headingFour" data-parent="#xeokitFaq">
<div class="card-body">
<b>Answer: </b><br><br>Use open source CLI tools to convert IFC (2x3 and 4.3) files into xeokit's
compressed native model format, XKT, which xeokit can then load super quickly into its
browser-based viewer.<br><br>The XKT format contains all the model's geometry and
elements, along with some basic metadata to help navigate the IFC types. The format