jjadtru
(Jad)
January 19, 2025, 4:40pm
#1
Hi, I am trying to make a radar chart for my game
This is what I have so far
As you can see it makes perfect lines to the node, but it has one problem. The open space I am trying to find a way to fill it with traingles( wedge parts). If you know a documentation I can use or script please lmk. Thank you
2 Likes
EgoMoose
(EgoMoose)
January 19, 2025, 4:54pm
#2
This is old, but here’s an explanation
# 3D Triangles
On occasion, you may find it necessary to draw triangles with three given points in 3D space. This article aims to go over one method that can be used to create those triangles using knowledge of trigonometry and coordinate frames.
## Table of contents
* [Triangle decomposition](#triangle-decomposition)
* [Manipulating the rotation matrix](#manipulating-the-rotation-matrix)
* [Optimization](#optimization)
---
## Triangle decomposition
The first thing we need to be aware of is that Roblox does not have a singular default shape that can be used to create any 3D triangle. However, a shape that Roblox does have is right-angle triangles, otherwise known as wedges. Thus, we can decompose any triangle into a maximum of two right-angle triangles and draw from there.
We can easily represent this process by drawing the [altitude](https://en.wikipedia.org/wiki/Altitude_(triangle)) of the triangle, splitting the triangle into 2 wedges.

This file has been truncated. show original
1 Like
jjadtru
(Jad)
January 19, 2025, 4:56pm
#3
Thank you I will look into this
system
(system)
Closed
February 2, 2025, 4:56pm
#4
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.