Skip to content

Commit

Permalink
WIP. Old changes?
Browse files Browse the repository at this point in the history
  • Loading branch information
nealkruis committed Aug 2, 2024
1 parent 4807fe1 commit e94274e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
5 changes: 3 additions & 2 deletions src/libkiva/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -174,9 +174,10 @@ if (${KIVA_3D})
endif ()

target_include_directories(libkiva PUBLIC
"${libkiva_BINARY_DIR}"
"${libkiva_SOURCE_DIR}"
"${BOOST_SOURCE_DIR}"
"${libkiva_SOURCE_DIR}"
"${libkiva_BINARY_DIR}"
"../include"
"${kiva_SOURCE_DIR}/vendor/eigen")

target_link_libraries(libkiva PRIVATE kiva_common_interface)
Expand Down
6 changes: 3 additions & 3 deletions src/libkiva/Foundation.cpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/* Copyright (c) 2012-2022 Big Ladder Software LLC. All rights reserved.
* See the LICENSE file for additional terms and conditions. */

#include "Foundation.hpp"
#include "<kiva/foundation.h>"
#include "Errors.hpp"

namespace Kiva {
Expand Down Expand Up @@ -108,8 +108,8 @@ Foundation::Foundation()
reductionLength2{0}, linearAreaMultiplier{0}, isXSymm{false}, isYSymm{false},
exposedFraction(1.0), useDetailedExposedPerimeter(false), buildingHeight(0.0), hasWall(true),
hasSlab(true), perimeterSurfaceWidth(0.0), hasPerimeterSurface(false), mesh(Mesh()),
numericalScheme(NS_ADI), fADI(0.00001), tolerance(1.0e-6),
maxIterations(100000), netArea{0}, netPerimeter{0} {}
numericalScheme(NS_ADI), fADI(0.00001), tolerance(1.0e-6), maxIterations(100000), netArea{0},
netPerimeter{0} {}

void Foundation::createMeshData() {
std::size_t nV = polygon.outer().size();
Expand Down

0 comments on commit e94274e

Please sign in to comment.