//Useful Macros // by Tim Nikias Wenclawiak // Last Update: 6.11.00 #declare UMacro_Included = 1; //A simple collection of useful Macros (useful in terms of "used-throughout-my-files") //All made by myself and used thoroughly after Creation. //Measurement-Macros //I tend to use one POV-Unit as one Metre, and derive other measurements from //there on. Thus, the measurement-Macros! #macro km(KiloMetres) 1000*KiloMetres #end #macro dm(Dezimetres) 10*Dezimetres #end #macro cm(Centimetres) .01*Centimetres #end #macro mm(Millimetres) .001*Millimetres #end