Skip to content

Commit

Permalink
layers back to Layers.
Browse files Browse the repository at this point in the history
  • Loading branch information
vidanovic committed Sep 20, 2024
1 parent ff11219 commit 51a4d22
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pywincalc/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from wincalcbindings import (
AirHorizontalDirection, BSDF, BSDFBasisType, BSDFDirection, BSDFDirections, BSDFHemisphere,
BSDFIntegrator, BoundaryConditionsCoefficientModelType, CMABestWorstUFactors, CMAResult, CMAWindow,
CMAWindowDualVisionHorizontal, CMAWindowDualVisionVertical, CMAWindowSingleVision, layers, CellSpacingType, PolygonType, pillar_cell_area,
CMAWindowDualVisionHorizontal, CMAWindowDualVisionVertical, CMAWindowSingleVision, Layers, CellSpacingType, PolygonType, pillar_cell_area,
PillarData, CylindricalPillar, SphericalPillar, RectangularPillar, TriangularPillar, PentagonPillar, HexagonPillar, LinearBearingPillar, TruncatedConePillar, Glass, PillarMeasurement,
AnnulusCylinderPillar, CShapedCylinderPillar, UniversalSupportPillar, CylindricalPillarLayer, SphericalPillarLayer, RectangularPillarLayer,
TriangularPillarLayer, PentagonPillarLayer, HexagonPillarLayer, LinearBearingPillarLayer, TruncatedConePillarLayer,
Expand Down
2 changes: 1 addition & 1 deletion src/wincalcbindings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1785,7 +1785,7 @@ PYBIND11_MODULE(wincalcbindings, m) {

m.def("is_closed", &EffectiveLayers::isClosed, py::arg("effective_openness"));

py::module_ layers = m.def_submodule("layers", "Submodule for Tarcog Layers");
py::module_ layers = m.def_submodule("Layers", "Submodule for Tarcog Layers");

layers.def("solid", py::overload_cast<double, double>(&Tarcog::ISO15099::Layers::solid),
"Factory method for creating a solid Tarcog layer with basic parameters",
Expand Down

0 comments on commit 51a4d22

Please sign in to comment.