This repository has been archived on 2020-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
Files
Indoor/floorplan/3D/primitives/Cylinder.h
2018-10-25 11:50:12 +02:00

93 lines
1.8 KiB
C++
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*
* © Copyright 2014 Urheberrechtshinweis
* Alle Rechte vorbehalten / All Rights Reserved
*
* Programmcode ist urheberrechtlich geschuetzt.
* Das Urheberrecht liegt, soweit nicht ausdruecklich anders gekennzeichnet, bei Frank Ebner.
* Keine Verwendung ohne explizite Genehmigung.
* (vgl. § 106 ff UrhG / § 97 UrhG)
*/
#ifndef FLOORPLAN_3D_CYLINDER_H
#define FLOORPLAN_3D_CYLINDER_H
#include "../../../math/Matrix4.h"
#include "Mesh.h"
namespace Floorplan3D {
/** walled cylinder */
class Cylinder : public Mesh {
public:
/** ctor */
Cylinder() {
;
}
/** get a transformed version */
Cylinder transformed(const Matrix4& mat) const {
Cylinder res = *this;
res.transform(mat);
return res;
}
/** build */
void add(const float rOuter, const float h, bool topAndBottom) {
const int tiles = 8;
const float deg_per_tile = 360.0f / tiles;
const float rad_per_tile = deg_per_tile / 180.0f * M_PI;
for (int i = 0; i < tiles; ++i) {
const float startRad = (i+0) * rad_per_tile;
const float endRad = (i+1) * rad_per_tile;
const float xo0 = std::cos(startRad) * rOuter;
const float yo0 = std::sin(startRad) * rOuter;
const float xo1 = std::cos(endRad) * rOuter;
const float yo1 = std::sin(endRad) * rOuter;
const float cx = 0;
const float cy = 0;
// outer
addQuad(
Point3(xo0, yo0, -h),
Point3(xo1, yo1, -h),
Point3(xo1, yo1, +h),
Point3(xo0, yo0, +h)
);
if (topAndBottom) {
// top
addTriangle(
Point3(cx, cy, h),
Point3(xo0, yo0, h),
Point3(xo1, yo1, h)
);
// bottom
addTriangle(
Point3(cx, cy, -h),
Point3(xo1, yo1, -h),
Point3(xo0, yo0, -h)
);
}
}
}
};
}
#endif // FLOORPLAN_3D_CYLINDER_H