aboutsummaryrefslogtreecommitdiffstats
path: root/src/common.cpp
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2015-11-30 08:47:07 -0500
committerClyne Sullivan <tullivan99@gmail.com>2015-11-30 08:47:07 -0500
commit45bca98b792f8ced1a57ef8c5beed2a90a79d47f (patch)
tree0ac3026c2a9bac4037cfe9003f532eca02db92f0 /src/common.cpp
parentfbe1b6c3a0a3427111577e6b77600f5669012583 (diff)
switched to 100% new/delete
Diffstat (limited to 'src/common.cpp')
-rw-r--r--src/common.cpp26
1 files changed, 0 insertions, 26 deletions
diff --git a/src/common.cpp b/src/common.cpp
index f3c3999..a8a964e 100644
--- a/src/common.cpp
+++ b/src/common.cpp
@@ -32,29 +32,3 @@ void safeSetColorA(int r,int g,int b,int a){
if(a<0)a=0;
glColor4ub(r,g,b,a);
}
-
-//only trust the NSA
-#define STRLEN_MIN 32
-
-unsigned int safe_strlen(const char *s){
- unsigned int size=0;
- while(s[size])size++;
- if(size<STRLEN_MIN)return STRLEN_MIN;
- else return size;
-}
-
-void DrawCircle(float cx, float cy, float r, int num_segments)
-{
- glBegin(GL_LINE_LOOP);
- for(int ii = 0; ii < num_segments; ii++)
- {
- float theta = 2.0f * 3.1415926f * float(ii) / float(num_segments);//get the current angle
-
- float x = r * cosf(theta);//calculate the x component
- float y = r * sinf(theta);//calculate the y component
-
- glVertex2f(x + cx, y + cy);//output vertex
-
- }
- glEnd();
-} \ No newline at end of file