Ignore:
Timestamp:
11/08/16 23:49:22 (7 years ago)
Author:
sz
Message:

scientific notation numbers ('e') are floating point, even without a dot

File:
1 edited

Legend:

Unmodified
Added
Removed
  • blender-povray-animation/frams-pov-import.py

    r578 r629  
    6969        # "string"
    7070        return val[1:-1]
    71     if val.find('.')!=-1:
     71    if val.find('.')!=-1 or val.find('e')!=-1:
    7272       # floating point
    7373        return float(val)
Note: See TracChangeset for help on using the changeset viewer.