I’m trying to make a text based clock in cmd. The clock doesn’t show the actual time it’s just going to be a line that rotates around a point.
I started doing it with printfs but quickly realized that is slow and not smart.
I know the basic concept of rotating points around a point, set point a to a location
Then set point B to a location and have it rotate by angle like with a triangle.
I’ve seen come examples in c++ but that wasn’t helping me a whole lot are there some functions you can call that make this easy?