Remove -Wno-comment warning suppression

Signed-off-by: Steve Pham <82231385+spham-amzn@users.noreply.github.com>
This commit is contained in:
Steve Pham
2022-02-01 09:04:32 -08:00
committed by GitHub
parent 3f63cf3546
commit 71cc3a2568
12 changed files with 501 additions and 477 deletions
@@ -328,18 +328,19 @@ namespace LmbrCentral
sides, capSegments, vertices);
}
}
/// Generates vertices and indices for a tube shape
/// Split into two stages:
/// - Generate vertex positions
/// - Generate indices (faces)
/// Heres a rough diagram of how it is built:
/// ____________
/// /_|__|__|__|_\
/// \_|__|__|__|_/
/// - A single vertex at each end of the tube
/// - Angled end cap segments
/// - Middle segments
/*
Generates vertices and indices for a tube shape
Split into two stages:
- Generate vertex positions
- Generate indices (faces)
Heres a rough diagram of how it is built:
____________
/_|__|__|__|_\
\_|__|__|__|_/
- A single vertex at each end of the tube
- Angled end cap segments
- Middle segments
*/
void GenerateSolidTubeMesh(
const AZ::SplinePtr& spline, const SplineAttribute<float>& variableRadius,
const float radius, const AZ::u32 capSegments, const AZ::u32 sides,