mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-08-10 01:41:57 +00:00
examples: fix missing includes
This commit is contained in:
committed by
Thomas Krijnen
parent
eb50be5c52
commit
28c7da2336
@@ -25,12 +25,13 @@
|
||||
// Sections and page number for this document are cited in the code comments.
|
||||
|
||||
// Disable warnings coming from IfcOpenShell
|
||||
#pragma warning(disable:4018 4267 4250 4984 4985)
|
||||
#pragma warning(disable : 4018 4267 4250 4984 4985)
|
||||
|
||||
#include "../ifcparse/IfcHierarchyHelper.h"
|
||||
#include "../ifcparse/Ifc4x3_add2.h"
|
||||
#include "../ifcparse/IfcHierarchyHelper.h"
|
||||
|
||||
#include <boost/math/constants/constants.hpp>
|
||||
#include <fstream>
|
||||
|
||||
const double PI = boost::math::constants::pi<double>();
|
||||
double to_radian(double deg) { return PI * deg / 180; }
|
||||
|
||||
Reference in New Issue
Block a user