]>
git.r.bdr.sh - rbdr/sumo/blob - lib/config.js
856fc1879193d592eb6c2ce710bf6c60ae67c867
2 Changes the stiffness on the node when it's less extended
10 * How many pixels to use per meter
12 * @property {number} meterSize
18 * Aspect Ratio the aspect ratio expressed as an array of two numbers
20 * @property {number} aspectRatio
23 aspectRatio: [2.76, 1],
26 * Target vertical resolution
28 * @property {number} verticalResolution
31 verticalResolution: 224
36 * How many pixels to use per meter
38 * @property {number} meterSize
41 config
.horizontalResolution
= Math
.round(config
.verticalResolution
* config
.aspectRatio
[0] / config
.aspectRatio
[1]);
43 export default config
;