-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
2807 lines (2000 loc) · 166 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">
<link rel="stylesheet" href="assets/css/normalize.css">
<link rel="stylesheet" href="assets/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/css/icofont.min.css">
<link rel="stylesheet" href="assets/css/animate.min.css">
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/assets/owl.carousel.min.css">
<link rel="stylesheet" href="assets/css/style.css">
<link rel="stylesheet" href="assets/css/responsive.css">
<link rel="icon" type="image/png" href="assets/images/favicon.png">
<title>IfcOpenShell - The open source IFC toolkit and geometry engine</title>
</head>
<body class="home-page">
<!--=== Start Header Section ===-->
<header class="header-section">
<nav class="navbar navbar-expand-lg navbar-light">
<div class="container">
<a class="navbar-brand" href="index.html">
<img src="assets/images/logo.png" alt="Logo">
</a>
<a href="javascript:void(0);" class="mobile-menu">
<div class="mobile-menu-btn">
<i class="icofont-lg icofont-navigation-menu"></i>
</div>
</a>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav">
<li class="nav-item">
<a href="index.html" class="nav-link active">home<span></span></a>
</li>
<li class="nav-item">
<a href="downloads.html" class="nav-link">downloads<span></span></a>
</li>
<li class="nav-item">
<a href="https://github.com/IfcOpenShell/IfcOpenShell/discussions" class="nav-link">forums<span></span></a>
</li>
<li class="nav-item">
<a href="http://blog.ifcopenshell.org" class="nav-link">blog<span></span></a>
</li>
<li class="nav-item">
<a href="https://docs.ifcopenshell.org" class="nav-link">documentation<span></span></a>
</li>
</ul>
<div class="menu-right-options ms-auto">
<p>
<strong class="amount-raised" style="margin-right: 5px;">$</strong> / $2,500 funded
<a href="https://opencollective.com/opensourcebim">
<span class="border-1">
<span class="progress-bar" id="progress-bar" data-status="0%" aria-label="Progress bar."></span>
</span>
</a>
</p>
<ul class="social-media-links">
<li>
<a href="https://twitter.com/aothms" target="_blank" class="btn btn-primary">
<i class="icofont-twitter"></i>
</a>
</li>
<li class="github-icon">
<a href="https://github.com/ifcopenshell/ifcopenshell" target="_blank" class="">Github Icon</a>
</li>
</ul>
</div>
</div>
</div>
</nav>
</header>
<!--=== Start Menu Slide Bar ===-->
<aside class="menu-slide-bar">
<div class="close-mobile-menu">
<div class="mobile-logo">
<a href="index.html" class="mobile-logo">
<img src="assets/images/logo.png" alt="Logo">
</a>
</div>
<a href="javascript:void(0);" class="close-btn">
<i class="icofont-close-line"></i>
</a>
</div>
<nav class="side-mobile-menu">
<ul id="mobile-menu-active">
<li class="nav-item">
<a href="index.html" class="nav-link active">home<span></span></a>
</li>
<li class="nav-item">
<a href="downloads.html" class="nav-link">downloads<span></span></a>
</li>
<li class="nav-item">
<a href="https://github.com/IfcOpenShell/IfcOpenShell/discussions" class="nav-link">forums<span></span></a>
</li>
<li class="nav-item">
<a href="http://blog.ifcopenshell.org" class="nav-link">blog<span></span></a>
</li>
<li class="nav-item">
<a href="https://docs.ifcopenshell.org" class="nav-link">documentation<span></span></a>
</li>
</ul>
</nav>
</aside>
<div class="body-overlay"></div>
<!--=== End Menu Slide Bar ===-->
<!--
// Preserved for posterity from the original website. This joke never gets old.
Q: What's with the name? Ifc Opens Hell?
A: No, you're not reading it correctly. An IfcOpenShell is one of the ways geometry can be described inside an Ifc file. Since the name reflects on the Ifc part, the open source part and the geometry part of the project, we figured we'd pick this as our name. PS: No, we're not called openIfcShell either
Q: Ok, so how do you make money with this?
A: We don't. Are you? How about sharing some of the pie or help out with development or testing!
-->
<!--=== Start Banner Section ===-->
<section class="banner-section bg-color-fff1f2">
<div class="container">
<div class="row align-items-center">
<div class="col-lg-6">
<div class="side-border wow fadeInUp delay-0-4s"></div>
<div class="banner-content">
<h1 class="wow fadeInUp delay-0-2s"> IfcOpenShell </h1>
<h2 class="up-title wow fadeInUp delay-0-4s"> The open source IFC toolkit <br> and geometry engine </h2>
<p class="wow fadeInUp delay-0-6s">
IfcOpenShell helps you develop digital platforms for the built environment. <br>
Read, write, and modify Building Information Models using IFC, <br>
a diverse digital language from design to construction and beyond.
</p>
<div class="banner-btn">
<a href="downloads.html" class="main-btn wow fadeInUp delay-0-8s">
<span class="btn-style">
<img src="assets/images/banner/download-icon.png" /> Download 0.8.0
</span>
</a>
</div>
</div>
</div>
<div class="col-lg-6 wow fadeInUp delay-0-4s">
<div class="banner-img">
<img src="assets/images/banner/banner-img-1.png" alt="Image">
</div>
</div>
</div>
</div>
</section>
<!--=== End Banner Section ===-->
<!--=== Start Services Section ===-->
<section class="services-section pt-50 pb-10">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-3 col-md-6">
<div class="main-services-item wow fadeInUp delay-0-2s color-1">
<div class="inner-content">
<h3>
A library you can rely on
</h3>
<span class="divider"></span>
<p>
Developed by a community of hundreds of developers and trusted to deliver many AEC technologies that power our industry.
</p>
</div>
<img src="assets/images/icon/icon-1.png" alt="Icon" />
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="main-services-item wow fadeInUp delay-0-2s color-2">
<div class="inner-content">
<h3>
Any technology stack
</h3>
<span class="divider"></span>
<p>
Build with Windows, Mac, or Linux, in C++ or Python. Deploy headless server tools, or author IFC natively with a rich graphical interface.
</p>
</div>
<img src="assets/images/icon/icon-2.png" alt="Icon" style="width: 70%;" />
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="main-services-item wow fadeInUp delay-0-2s color-3 text-left">
<div class="inner-content">
<h3>
All schemas and formats
</h3>
<span class="divider"></span>
<p>
Support IFC2X3, IFC4, IFC4X3, or load your own at run-time. Read and write IFC-SPF, IFCJSON, IFCXML, IFCHDF5, and IFCSQL.
</p>
</div>
<img src="assets/images/icon/icon-3.png" alt="Icon" class="left-image" />
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="main-services-item wow fadeInUp delay-0-2s color-4">
<div class="inner-content">
<h3>
Native IFC authoring API
</h3>
<span class="divider"></span>
<p>
High level API for hundreds of tasks. Perform complex authoring like copying objects, cost calculation, or 4D simulation with one line of code.
</p>
</div>
<img src="assets/images/icon/icon-4.png" alt="Icon">
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="main-services-item wow fadeInUp delay-0-2s color-1">
<div class="inner-content">
<h3>
Robust geometry
</h3>
<span class="divider"></span>
<p>
Convert parametric geometry into explicit geometry for any CAD system from booleans to complex sweeps.
</p>
</div>
<img src="assets/images/icon/icon-5.png" alt="Icon">
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="main-services-item wow fadeInUp delay-0-2s color-2">
<div class="inner-content">
<h3>
2D drawings
</h3>
<span class="divider"></span>
<p>
Generate and annotate 2D drawings from 3D geometry with ease. Preserve drawing semantics and link model data to and from drawing symbols.
</p>
</div>
<img src="assets/images/icon/icon-6.png" alt="Icon">
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="main-services-item wow fadeInUp delay-0-2s color-3">
<div class="inner-content">
<h3>
Ecosystem of tools
</h3>
<span class="divider"></span>
<p>
Clash detection, model comparison, and conversion to over 10 other formats. Integrate with technologies like IDS, BCF, and bSDD, and more.
</p>
</div>
<img src="assets/images/icon/icon-7.png" alt="Icon">
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="main-services-item wow fadeInUp delay-0-2s color-4">
<div class="inner-content">
<h3>
Easy to use
</h3>
<span class="divider"></span>
<p>
Extensive documentation, user guides, academic courses, and a vibrant user community to help you begin your journey.
</p>
</div>
<img src="assets/images/icon/icon-8.png" alt="Icon">
<div class="desing-1"><img src="assets/images/home-page/desing1.png" alt="Icon" class=""></div>
</div>
</div>
</div>
<div class="desing-2 wow fadeInUp delay-0-8s"><img src="assets/images/home-page/desing2.png" alt="Icon" class="line-image"></div>
</div>
</section>
<!--=== End Services Section ===-->
<div class="container started-section choose-section wow fadeInUp" >
<div class="row">
<h3> Let's get started </h3>
</div>
<div id="tabs">
<div class="row">
<div class="col-lg-6 col-md-12">
<div class="home-page-slider-section">
<div class="design-1"></div>
<div class="design-2"></div>
<div class="tabContent">
<div class="owl-carousel owl-theme " >
<div class="item" >
<pre>
<span class="orange-color"># Load and edit a wall name</span>
import <span class="green-color">ifcopenshell</span>
model = ifcopenshell.<span class="green-color">open</span>('model.ifc')
walls = model.<span class="green-color">by_type</span>('IfcWall')
walls[0].Name = 'My wall'
model.<span class="green-color">write</span>('updated-model.ifc')
</pre>
</div>
<div class="item" >
<pre>
<span class="orange-color"># Properties, type, and location of a door</span>
import <span class="green-color">ifcopenshell.util.element</span> as <span class="green-color">util</span>
door = model.<span class="green-color">by_type</span>("IfcDoor")[0]
prop_sets = util.<span class="green-color">get_psets</span>(door)
door_type = util.<span class="green-color">get_type</span>(door)
location = util.<span class="green-color">get_container</span>(door)
</pre>
</div>
<div class="item" >
<pre>
<span class="orange-color"># Create a wall on the site</span>
from <span class="green-color">ifcopenshell.api</span> import <span class="green-color">run</span>
site = run("<span class="green-color">root.create_entity</span>", model,
ifc_class="IfcSite")
wall = run("<span class="green-color">root.create_entity</span>", model,
ifc_class="IfcWall")
run("<span class="green-color">spatial.assign_container</span>", model,
relating_structure=site, product=wall)
</pre>
</div>
</div>
</div>
<div class="tabContent">
<div class="owl-carousel owl-theme">
<div class="item" >
<pre>
// C++ example 1
</pre>
</div>
<div class="item" >
<pre>
// C++ example 2
</pre>
</div>
<div class="item" >
<pre>
// C++ example 3
</pre>
</div>
</div>
</div>
<div class="tabContent">
<div class="owl-carousel owl-theme">
<div class="item" >
<pre>
<span class="orange-color"># Convert a model to different formats</span>
$ <span class="green-color">IfcConvert</span> model.ifc model.glb
<span class="orange-color"># Multicore processing</span>
$ <span class="green-color">IfcConvert</span> model.ifc model.dae
<span class="orange-color"># Filters and operations</span>
$ <span class="green-color">IfcConvert</span> --model-offset "10000;10000;0" \
model.ifc model.dae
</pre>
</div>
<div class="item" >
<pre>
<span class="orange-color"># Check BIM requirements</span>
$ <span class="green-color">ifctester</span> specs.ids model.ifc
<span class="orange-color"># Produce reports</span>
$ <span class="green-color">ifctester</span> -r Html -o out.html test.ids bldg.ifc
</pre>
</div>
<div class="item" >
<pre>
<span class="orange-color"># Compare models</span>
$ <span class="green-color">ifcdiff</span> old.ifc new.ifc
<span class="orange-color"># Schedule objects in a spreadsheet</span>
$ <span class="green-color">ifccsv</span> -i input.ifc -c out.csv -q ".IfcWall"
<span class="orange-color"># Clash detection</span>
$ <span class="green-color">ifcclash</span> -o results.json clashsets.json
</pre>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-6 col-md-12">
<div class="tcenter wow fadeInUp delay-0-2s ">
<h4> Choose your hammer </h4>
<ul class="choose-list">
<li>
<a class="tab whiteborder">
I know Python
</a>
</li>
<li>
<a class="tab">
I know C++
</a>
</li>
<li>
<a class="tab">
I'm a CLI whiz
</a>
</li>
</ul>
<p>
Learn more in our <a href="https://docs.ifcopenshell.org"><span>documentation</span>.</a>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Carousel Section -->
<div class="container started-section wow fadeInUp logo-section" >
<div class="row">
<h3 class="wow fadeInUp delay-0-2s"> Made possible by you </h3>
</div>
<div class="row">
<div class="offset-sm-1 col-sm-10 text-center">
<div class="partners-logo tier1">
<div>
<a href="https://opencollective.com/cyril-waechter-bim-insight">
<img src="https://images.opencollective.com/cyril-waechter-bim-insight/2185b1f/logo/100.png" alt="Partner" class="wow fadeInUp delay-0-2s" />
<br />
Cyril Waechter BIM Insight
</a>
</div>
<div>
<a href="https://opencollective.com/bimvoice">
<img src="https://images.opencollective.com/bimvoice/fd7b87f/logo/100.png" alt="Partner" class="wow fadeInUp delay-0-2s" />
<br />
BIMvoice
</a>
</div>
<div>
<a href="https://opencollective.com/dion-moult">
<img src="https://images.opencollective.com/dion-moult/e6dd5ba/avatar/100.png" alt="Partner" class="wow fadeInUp delay-0-2s" />
<br />
Dion Moult
</a>
</div>
<div>
<a href="https://opencollective.com/baupunktnull-ag">
<img src="https://images.opencollective.com/baupunktnull-ag/cedb389/avatar/100.png" alt="Partner" class="wow fadeInUp delay-0-2s" />
<br />
BAUPUNKTNULL AG
</a>
</div>
<div>
<a href="https://opencollective.com/planibim-sa">
<img src="https://images.opencollective.com/planibim-sa/a3b659a/logo/100.png" alt="Partner" class="wow fadeInUp delay-0-2s" />
<br />
PlaniBIM SA
</a>
</div>
<div>
<a href="https://opencollective.com/mats-noren">
<img src="https://images.opencollective.com/mats-noren/19a5c52/avatar/100.png" alt="Partner" class="wow fadeInUp delay-0-2s" />
<br />
Mats Norén
</a>
</div>
<div>
<a href="https://opencollective.com/guest-1d182d7e">
<img src="https://images.opencollective.com/guest-1d182d7e/avatar/100.png" alt="Partner" class="wow fadeInUp delay-0-2s" />
<br />
Randolph
</a>
</div>
<div>
<a href="https://opencollective.com/matthew-fuller">
<img src="https://images.opencollective.com/matthew-fuller/1320eb7/avatar/100.png" alt="Partner" class="wow fadeInUp delay-0-2s" />
<br />
Matthew Fuller
</a>
</div>
<div>
<a href="https://opencollective.com/creoox">
<img src="https://images.opencollective.com/creoox/88abcb3/avatar/100.png" alt="Partner" class="wow fadeInUp delay-0-2s" />
<br />
Tomasz
</a>
</div>
<div>
<a href="https://opencollective.com/guest-6daac764">
<img src="https://images.opencollective.com/guest-6daac764/avatar/100.png" alt="Partner" class="wow fadeInUp delay-0-2s" />
<br />
Trenton Gauthier, AIA
</a>
</div>
<div>
<a href="https://opencollective.com/spectar1">
<img src="https://images.opencollective.com/spectar1/3ca97c2/logo/100.png" alt="Partner" class="wow fadeInUp delay-0-2s" />
<br />
Spectar
</a>
</div>
<div>
<a href="https://opencollective.com/maarten4">
<img src="https://images.opencollective.com/maarten4/avatar/100.png" alt="Partner" class="wow fadeInUp delay-0-2s" />
<br />
Sailor
</a>
</div>
<div>
<a href="https://opencollective.com/daniel60">
<img src="https://images.opencollective.com/daniel60/avatar/100.png" alt="Partner" class="wow fadeInUp delay-0-2s" />
<br />
Daniel
</a>
</div>
<div>
<a href="https://opencollective.com/carlopav">
<img src="https://images.opencollective.com/carlopav/avatar/100.png" alt="Partner" class="wow fadeInUp delay-0-2s" />
<br />
carlopav
</a>
</div>
<div>
<a href="https://opencollective.com/lukas-alberts">
<img src="https://images.opencollective.com/lukas-alberts/avatar/100.png" alt="Partner" class="wow fadeInUp delay-0-2s" />
<br />
Lukas Alberts
</a>
</div>
<div>
<a href="https://opencollective.com/sven-amiet">
<img src="https://images.opencollective.com/sven-amiet/5d5a30d/avatar/100.png" alt="Partner" class="wow fadeInUp delay-0-2s" />
<br />
Sven Amiet
</a>
</div>
<div>
<a href="https://opencollective.com/guest-f84a4e44">
<img src="https://images.opencollective.com/guest-f84a4e44/avatar/100.png" alt="Partner" class="wow fadeInUp delay-0-2s" />
<br />
E4tech Software SA
</a>
</div>
<div>
<a href="https://opencollective.com/guest-e55cf799">
<img src="https://images.opencollective.com/guest-e55cf799/avatar/100.png" alt="Partner" class="wow fadeInUp delay-0-2s" />
<br />
Lawrence Giroux
</a>
</div>
<div>
<a href="https://opencollective.com/stefstap">
<img src="https://images.opencollective.com/stefstap/avatar/100.png" alt="Partner" class="wow fadeInUp delay-0-2s" />
<br />
StefStap
</a>
</div>
<div>
<a href="https://opencollective.com/openingdesign">
<img src="https://images.opencollective.com/openingdesign/f330536/logo/100.png" alt="Partner" class="wow fadeInUp delay-0-2s" />
<br />
OpeningDesign
</a>
</div>
<div>
<a href="https://opencollective.com/user-1a7e2094">
<img src="https://images.opencollective.com/user-1a7e2094/avatar/100.png" alt="Partner" class="wow fadeInUp delay-0-2s" />
<br />
Incognito
</a>
</div>
<div>
<a href="https://opencollective.com/aethereng">
<img src="https://images.opencollective.com/aethereng/33ed640/logo/100.png" alt="Partner" class="wow fadeInUp delay-0-2s" />
<br />
Aether Engineering
</a>
</div>
<div>
<a href="https://opencollective.com/tietoa-finland-oy">
<img src="https://images.opencollective.com/tietoa-finland-oy/632bc4b/logo/100.png" alt="Partner" class="wow fadeInUp delay-0-2s" />
<br />
Tietoa Finland Oy
</a>
</div>
<div>
<a href="https://opencollective.com/paul-tice">
<img src="https://images.opencollective.com/paul-tice/avatar/100.png" alt="Partner" class="wow fadeInUp delay-0-2s" />
<br />
Paul Tice
</a>
</div>
<div>
<a href="https://opencollective.com/guest-809e73dc">
<img src="https://images.opencollective.com/guest-809e73dc/avatar/100.png" alt="Partner" class="wow fadeInUp delay-0-2s" />
<br />
Léon van Berlo
</a>
</div>
<div>
<a href="https://opencollective.com/sogelink">
<img src="https://images.opencollective.com/sogelink/85f73bb/logo/100.png" alt="Partner" class="wow fadeInUp delay-0-2s" />
<br />
Sogelink
</a>
</div>
<div>
<a href="https://github.com/Moult">
<img src="https://avatars.githubusercontent.com/u/88302?v=4" alt="Partner" class="wow fadeInUp delay-0-2s" />
<br />
Moult
</a>
</div>
<div>
<a href="https://github.com/Andrej730">
<img src="https://avatars.githubusercontent.com/u/9417531?v=4" alt="Partner" class="wow fadeInUp delay-0-2s" />
<br />
Andrej730
</a>
</div>
<div>
<a href="https://github.com/aothms">
<img src="https://avatars.githubusercontent.com/u/1096535?v=4" alt="Partner" class="wow fadeInUp delay-0-2s" />
<br />
aothms
</a>
</div>
<div>
<a href="https://github.com/myoualid">
<img src="https://avatars.githubusercontent.com/u/79010126?v=4" alt="Partner" class="wow fadeInUp delay-0-2s" />
<br />
myoualid
</a>
</div>
</div>
<div class="partners-logo tier2">
<div>
<a href="https://opencollective.com/guest-277bf83f">
<img src="https://images.opencollective.com/guest-277bf83f/avatar/100.png" alt="Partner" class="wow fadeInUp delay-0-2s" />
<br />
Losepacific
</a>
</div>
<div>
<a href="https://opencollective.com/brendon-reid">
<img src="https://images.opencollective.com/brendon-reid/2ec9c08/avatar/100.png" alt="Partner" class="wow fadeInUp delay-0-2s" />
<br />
Brendon Reid
</a>
</div>
<div>
<a href="https://opencollective.com/jonny-knopp">
<img src="https://images.opencollective.com/jonny-knopp/avatar/100.png" alt="Partner" class="wow fadeInUp delay-0-2s" />
<br />
Jonny Knopp
</a>
</div>
<div>
<a href="https://opencollective.com/guest-08b4953b">
<img src="https://images.opencollective.com/guest-08b4953b/avatar/100.png" alt="Partner" class="wow fadeInUp delay-0-2s" />
<br />
Alex
</a>
</div>
<div>
<a href="https://opencollective.com/frode-lund-tharaldsen">
<img src="https://images.opencollective.com/frode-lund-tharaldsen/avatar/100.png" alt="Partner" class="wow fadeInUp delay-0-2s" />
<br />
Frode Lund Tharaldsen
</a>
</div>
<div>
<a href="https://opencollective.com/leon-ten-brinke">
<img src="https://images.opencollective.com/leon-ten-brinke/2dde7ca/avatar/100.png" alt="Partner" class="wow fadeInUp delay-0-2s" />
<br />
Leon ten Brinke
</a>
</div>
<div>
<a href="https://opencollective.com/haritonov-alexander">
<img src="https://images.opencollective.com/haritonov-alexander/avatar/100.png" alt="Partner" class="wow fadeInUp delay-0-2s" />
<br />
Haritonov Alexander
</a>
</div>
<div>
<a href="https://opencollective.com/cvillagrasa">
<img src="https://images.opencollective.com/cvillagrasa/avatar/100.png" alt="Partner" class="wow fadeInUp delay-0-2s" />
<br />
cvillagrasa
</a>
</div>
<div>
<a href="https://opencollective.com/git_ifc">
<img src="https://images.opencollective.com/git_ifc/logo/100.png" alt="Partner" class="wow fadeInUp delay-0-2s" />
<br />
(CLOSED - PAID OUT) - A GIT/IFC Interface in BlenderBIM.
</a>
</div>
<div>
<a href="https://opencollective.com/dumitru-minciu">
<img src="https://images.opencollective.com/dumitru-minciu/avatar/100.png" alt="Partner" class="wow fadeInUp delay-0-2s" />
<br />
Dumitru Minciu
</a>
</div>
<div>
<a href="https://opencollective.com/guest-987b39cd">
<img src="https://images.opencollective.com/guest-987b39cd/avatar/100.png" alt="Partner" class="wow fadeInUp delay-0-2s" />
<br />
bitenergie
</a>
</div>
<div>
<a href="https://opencollective.com/udo1">
<img src="https://images.opencollective.com/udo1/avatar/100.png" alt="Partner" class="wow fadeInUp delay-0-2s" />
<br />
Udo
</a>
</div>
<div>
<a href="https://opencollective.com/guest-b0ac63d9">
<img src="https://images.opencollective.com/guest-b0ac63d9/avatar/100.png" alt="Partner" class="wow fadeInUp delay-0-2s" />
<br />
Oke
</a>
</div>
<div>
<a href="https://opencollective.com/hannes-worn">
<img src="https://images.opencollective.com/hannes-worn/4a4aa13/avatar/100.png" alt="Partner" class="wow fadeInUp delay-0-2s" />
<br />
Hannes Wörn
</a>
</div>
<div>
<a href="https://opencollective.com/guest-60f918a4">
<img src="https://images.opencollective.com/guest-60f918a4/avatar/100.png" alt="Partner" class="wow fadeInUp delay-0-2s" />
<br />
Rhomberg Sersa Rail Group
</a>
</div>
<div>
<a href="https://github.com/brunoperdigao">
<img src="https://avatars.githubusercontent.com/u/57102715?v=4" alt="Partner" class="wow fadeInUp delay-0-2s" />
<br />
brunoperdigao
</a>
</div>
<div>
<a href="https://github.com/Gorgious56">
<img src="https://avatars.githubusercontent.com/u/25156105?v=4" alt="Partner" class="wow fadeInUp delay-0-2s" />
<br />
Gorgious56
</a>
</div>
<div>
<a href="https://github.com/Stinkfist0">
<img src="https://avatars.githubusercontent.com/u/227876?v=4" alt="Partner" class="wow fadeInUp delay-0-2s" />
<br />
Stinkfist0
</a>
</div>
<div>
<a href="https://github.com/rileywong311">
<img src="https://avatars.githubusercontent.com/u/114180322?v=4" alt="Partner" class="wow fadeInUp delay-0-2s" />
<br />
rileywong311
</a>
</div>
<div>
<a href="https://github.com/theoryshaw">
<img src="https://avatars.githubusercontent.com/u/507113?v=4" alt="Partner" class="wow fadeInUp delay-0-2s" />
<br />
theoryshaw
</a>
</div>
<div>
<a href="https://github.com/maxfb87">
<img src="https://avatars.githubusercontent.com/u/79401028?v=4" alt="Partner" class="wow fadeInUp delay-0-2s" />
<br />
maxfb87
</a>
</div>
<div>
<a href="https://github.com/Ziad-I">
<img src="https://avatars.githubusercontent.com/u/68874104?v=4" alt="Partner" class="wow fadeInUp delay-0-2s" />
<br />
Ziad-I
</a>
</div>
<div>
<a href="https://github.com/brunopostle">
<img src="https://avatars.githubusercontent.com/u/1747315?v=4" alt="Partner" class="wow fadeInUp delay-0-2s" />
<br />
brunopostle
</a>
</div>
<div>
<a href="https://github.com/RickBrice">
<img src="https://avatars.githubusercontent.com/u/37087370?v=4" alt="Partner" class="wow fadeInUp delay-0-2s" />
<br />
RickBrice
</a>
</div>
<div>
<a href="https://github.com/Krande">
<img src="https://avatars.githubusercontent.com/u/9642232?v=4" alt="Partner" class="wow fadeInUp delay-0-2s" />
<br />
Krande
</a>
</div>
<div>
<a href="https://github.com/kenohori">
<img src="https://avatars.githubusercontent.com/u/1544239?v=4" alt="Partner" class="wow fadeInUp delay-0-2s" />
<br />
kenohori
</a>
</div>
<div>
<a href="https://github.com/berndhahnebach">
<img src="https://avatars.githubusercontent.com/u/6129869?v=4" alt="Partner" class="wow fadeInUp delay-0-2s" />
<br />
berndhahnebach
</a>
</div>
<div>
<a href="https://github.com/johltn">
<img src="https://avatars.githubusercontent.com/u/48138129?v=4" alt="Partner" class="wow fadeInUp delay-0-2s" />
<br />
johltn
</a>
</div>
<div>
<a href="https://github.com/vulevukusej">
<img src="https://avatars.githubusercontent.com/u/83825269?v=4" alt="Partner" class="wow fadeInUp delay-0-2s" />
<br />
vulevukusej
</a>
</div>
<div>
<a href="https://github.com/dirkolbrich">
<img src="https://avatars.githubusercontent.com/u/3765119?v=4" alt="Partner" class="wow fadeInUp delay-0-2s" />
<br />
dirkolbrich
</a>
</div>
<div>
<a href="https://github.com/Jesusbill">
<img src="https://avatars.githubusercontent.com/u/6861582?v=4" alt="Partner" class="wow fadeInUp delay-0-2s" />
<br />
Jesusbill
</a>
</div>
<div>
<a href="https://github.com/CyrilWaechter">
<img src="https://avatars.githubusercontent.com/u/9622862?v=4" alt="Partner" class="wow fadeInUp delay-0-2s" />
<br />
CyrilWaechter
</a>
</div>
<div>
<a href="https://github.com/Martin15135215">
<img src="https://avatars.githubusercontent.com/u/110968398?v=4" alt="Partner" class="wow fadeInUp delay-0-2s" />
<br />
Martin15135215
</a>
</div>
<div>
<a href="https://github.com/atomczak">
<img src="https://avatars.githubusercontent.com/u/22922395?v=4" alt="Partner" class="wow fadeInUp delay-0-2s" />
<br />
atomczak
</a>
</div>
<div>
<a href="https://github.com/dushyant-basson">
<img src="https://avatars.githubusercontent.com/u/39452934?v=4" alt="Partner" class="wow fadeInUp delay-0-2s" />
<br />
dushyant-basson
</a>
</div>
</div>
<div class="partners-logo tier3">
<a href="https://opencollective.com/louistrue" style="margin-right: 10px;">
<img src="https://images.opencollective.com/louistrue/edaad65/avatar/100.png" title="Louis Trümpler" class="wow fadeInUp delay-0-2s" />
</a>
<a href="https://opencollective.com/guest-f962600e" style="margin-right: 10px;">
<img src="https://images.opencollective.com/guest-f962600e/avatar/100.png" title="Bedrossian Ádám" class="wow fadeInUp delay-0-2s" />
</a>
<a href="https://opencollective.com/guest-7ae5f0a3" style="margin-right: 10px;">
<img src="https://images.opencollective.com/guest-7ae5f0a3/avatar/100.png" title="Ivo Leeman" class="wow fadeInUp delay-0-2s" />
</a>
<a href="https://opencollective.com/julio15" style="margin-right: 10px;">
<img src="https://images.opencollective.com/julio15/avatar/100.png" title="Julio" class="wow fadeInUp delay-0-2s" />
</a>
<a href="https://opencollective.com/tlang" style="margin-right: 10px;">
<img src="https://images.opencollective.com/tlang/avatar/100.png" title="tlang" class="wow fadeInUp delay-0-2s" />
</a>
<a href="https://opencollective.com/bimage" style="margin-right: 10px;">
<img src="https://images.opencollective.com/bimage/avatar/100.png" title="bimage" class="wow fadeInUp delay-0-2s" />
</a>
<a href="https://opencollective.com/guest-25354642" style="margin-right: 10px;">
<img src="https://images.opencollective.com/guest-25354642/avatar/100.png" title="Rodas" class="wow fadeInUp delay-0-2s" />
</a>
<a href="https://opencollective.com/arun7" style="margin-right: 10px;">
<img src="https://images.opencollective.com/arun7/920fddb/avatar/100.png" title="Arun" class="wow fadeInUp delay-0-2s" />
</a>
<a href="https://opencollective.com/hnnng" style="margin-right: 10px;">
<img src="https://images.opencollective.com/hnnng/avatar/100.png" title="Henning Munzel" class="wow fadeInUp delay-0-2s" />
</a>
<a href="https://opencollective.com/omar-zerhouni" style="margin-right: 10px;">