src/primitives.cc

changeset 840
d077dd19bf9a
parent 806
4240f47aa2d4
child 844
11587d419d2f
--- a/src/primitives.cc	Sun Jul 13 20:28:52 2014 +0300
+++ b/src/primitives.cc	Sun Jul 13 20:40:24 2014 +0300
@@ -306,12 +306,12 @@
 		if (line.endsWith ("\n"))
 			line.chop (1);
 
-		if (line.length() == 0 || line[0] == '#')
+		if (line.length() == 0 or line[0] == '#')
 			continue;
 
 		if ((colon = line.indexOf (":")) == -1)
 		{
-			if (cat && cat->isValidToInclude())
+			if (cat and cat->isValidToInclude())
 				g_PrimitiveCategories << cat;
 
 			cat = new PrimitiveCategory (line);
@@ -475,7 +475,7 @@
 
 				objs << quad;
 
-				if (type == Cylinder || type == Cone)
+				if (type == Cylinder or type == Cone)
 					condLineSegs << i;
 			} break;
 
@@ -510,7 +510,7 @@
 
 	// If this is not a full circle, we need a conditional line at the other
 	// end, too.
-	if (segs < divs && condLineSegs.size() != 0)
+	if (segs < divs and condLineSegs.size() != 0)
 		condLineSegs << segs;
 
 	for (int i : condLineSegs)
@@ -577,7 +577,7 @@
 	QString prefix = (divs == g_lores) ? "" : format ("%1/", divs);
 	QString frac = format ("%1-%2", numer, denom);
 	QString root = g_radialNameRoots[type];
-	QString numstr = (type == Ring || type == Cone) ? format ("%1", num) : "";
+	QString numstr = (type == Ring or type == Cone) ? format ("%1", num) : "";
 
 	// Truncate the root if necessary (7-16rin4.dat for instance).
 	// However, always keep the root at least 2 characters.
@@ -601,7 +601,7 @@
 	if (frac.indexOf (".") == -1)
 		frac += ".0";
 
-	if (type == Ring || type == Cone)
+	if (type == Ring or type == Cone)
 	{
 		QString spacing =
 			(num < 10) ? "  " :
@@ -682,7 +682,7 @@
 
 	// If the current value is 16 and we switch to hi-res, default the
 	// spinbox to 48.
-	if (on && ui->sb_segs->value() == g_lores)
+	if (on and ui->sb_segs->value() == g_lores)
 		ui->sb_segs->setValue (g_hires);
 }
 

mercurial