]> granicus.if.org Git - graphviz/commitdiff
smyrna drawCircle: abbreviate a float literal
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 14 Jan 2023 05:22:26 +0000 (21:22 -0800)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Sun, 15 Jan 2023 16:59:31 +0000 (08:59 -0800)
cmd/smyrna/draw.c

index 0a7baaaa7bfa633d05aeed57adb8cc48b2b428fa..800e2d34fca1029416e2c9a35f3744e3aeb56956 100644 (file)
@@ -398,7 +398,7 @@ void drawCircle(float x, float y, float radius, float zdepth)
 {
     int i;
     if (radius < 0.3)
-       radius = (float) 0.4;
+       radius = 0.4f;
     glBegin(GL_POLYGON);
     for (i = 0; i < 360; i = i + 36) {
        float degInRad = (float) (i * DEG2RAD);