--- ray/src/cv/lampcolor.c 1991/09/05 15:09:08 1.2 +++ ray/src/cv/lampcolor.c 1991/09/05 15:36:34 1.4 @@ -49,7 +49,7 @@ or \"ring\". These may be abbreviated as a single let { "total lamp lumens", "0", outpcheck, "This is the overall light output of the lamp and its fixture. If you do\n\ not know this value explicitly, you can compute the approximate lumens\n\ -by multiplying the input wattage by 15 for incandescent fixtures or 40\n\ +by multiplying the input wattage by 14 for incandescent fixtures or 70\n\ for fluorescent fixtures." }, }; @@ -198,7 +198,7 @@ double *dp; getpolygon() /* get projected area for a polygon */ { - printf("Enter area of polygon: "); + printf("Polygon area? "); if (!getd(&projarea)) return(0); projarea *= unit2meter*unit2meter; @@ -211,7 +211,7 @@ getsphere() /* get projected area for a sphere */ { double radius; - printf("Enter sphere radius: "); + printf("Sphere radius? "); if (!getd(&radius)) return(0); radius *= unit2meter; @@ -224,11 +224,11 @@ getcylinder() /* get projected area for a cylinder * { double length, radius; - printf("Enter cylinder length: "); + printf("Cylinder length? "); if (!getd(&length)) return(0); length *= unit2meter; - printf("Enter cylinder radius: "); + printf("Cylinder radius? "); if (!getd(&radius)) return(0); radius *= unit2meter; @@ -241,7 +241,7 @@ getring() /* get projected area for a ring */ { double radius; - printf("Enter disk radius: "); + printf("Disk radius? "); if (!getd(&radius)) return(0); radius *= unit2meter;