From c30b5cbc089535d8068469e7507b2c79aca30cb3 Mon Sep 17 00:00:00 2001 From: Thomas Krijnen Date: Sun, 23 Feb 2025 15:22:36 +0100 Subject: [PATCH] Add std::array typemap #6137 #6191 #6196 --- src/ifcwrap/IfcPython.i | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/ifcwrap/IfcPython.i b/src/ifcwrap/IfcPython.i index ec726fb5f2..196416586c 100644 --- a/src/ifcwrap/IfcPython.i +++ b/src/ifcwrap/IfcPython.i @@ -54,6 +54,11 @@ %include "exception.i" %include "std_shared_ptr.i" +%{ + #include +%} +%template(DoubleArray3) std::array; + %ignore IfcGeom::NumberNativeDouble; %ignore ifcopenshell::geometry::Converter;