Doodle3D-Core/src/d2/texts.js

14 lines
288 B
JavaScript
Raw Normal View History

2021-05-20 04:16:53 +02:00
import { Text, Color } from '@doodle3d/cal';
2017-11-15 15:13:49 +01:00
export const dimensionsText = new Text({
size: 16,
family: 'monospace',
fill: true,
fillColor: new Color(0x000000),
stroke: true,
strokeWidth: 2,
strokeColor: new Color(0xffffff),
align: 'center',
baseline: 'alphabetic'
});