A chapter from Doug Tidwell's book, XSLT, published by O'Reilly and Associates
返回原文..
import math def cos(d): return math.cos(d) def sin(d): return math.sin(d) def toRadians(d): return d / 180 * math.pi
返回原文.