Cogs.Core
CrossSectionGenerator.h
1#pragma once
2
3#include "Base.h"
4
5#include <glm/fwd.hpp>
6
7namespace Cogs
8{
9 namespace Geometry
10 {
12 {
13 COGSCORE_DLL_API static bool generateCircularCrossection(glm::vec3 * vertices, int numSegments, float radius, float startAngle, float endAngle, bool wrapAround);
14 };
15 }
16}
Contains all Cogs related functionality.
Definition: FieldSetter.h:23