1 2 3 4 5 6 7 8 9 10 11 12 13 | 1× | /** * StaticGeometry can not be changed once they've been setup */ import Geometry from './Geometry'; /** * @constructor clay.StaticGeometry * @extends clay.Geometry */ var StaticGeometry = Geometry.extend({ dynamic: false }); export default StaticGeometry; |