123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- import { i18n } from '../../../../lang/index'
- export const SVGURI = 'http://www.w3.org/2000/svg'
- export const SVGPATH = "http://www.w3.org/1999/xlink"
- export const STATE_CHILD = '__state'
- export const POINT = 'point'
- export const DOOR = 'door'
- export const DOUBLEDOOR = 'double_door'
- export const COLUMN = 'column'
- export const CASEMENT = 'casement'
- export const SLIDEDOOR = 'slideDoor'
- export const TAGGING = 'tagging'
- export const GROUNDCASE = 'groundCase'
- export const BAYCASE = 'bayCase'
- export const FURNCOLUMN = 'furnColumn'
- export const FURNFLUE = 'furnFlue'
- export const LINE = 'line'
- export const SEFTLINE = 'seftline'
- export const ARCH = {
- [POINT]: i18n.t('modules.model.point'),
- [DOOR]: i18n.t('modules.model.door'),
- [DOUBLEDOOR]: i18n.t('modules.model.double_door'),
- [COLUMN]: i18n.t('modules.model.column'),
- [CASEMENT]: i18n.t('modules.model.casement'),
- [SLIDEDOOR]: i18n.t('modules.model.slideDoor'),
- [TAGGING]: i18n.t('modules.model.tagging'),
- [GROUNDCASE]: i18n.t('modules.model.groundCase'),
- [BAYCASE]: i18n.t('modules.model.bayCase'),
- [FURNCOLUMN]: i18n.t('modules.model.furnColumn'),
- [FURNFLUE]: i18n.t('modules.model.furnFlue'),
- [LINE]: i18n.t('modules.model.line'),
- [SEFTLINE]: i18n.t('modules.model.line')
- }
- export const DEFAULT = {
- [DOOR]: {
- width: 0.8,
- height: 2
- },
- [DOUBLEDOOR]: {
- width: 1.6,
- height: 2
- },
- [SLIDEDOOR]: {
- width: 1.5,
- height: 2
- },
- [CASEMENT]: {
- width: 0.8,
- height: 1.2
- },
- [BAYCASE]: {
- width: 1.5,
- height: 1.2
- },
- [GROUNDCASE]: {
- width: 1.5,
- height: 2
- },
- [COLUMN]: {
- width: 0.65,
- tick: 0.65
- },
- [FURNCOLUMN]: {
- width: 0.65,
- tick: 0.65
- },
- [FURNFLUE]: {
- width: 0.65,
- tick: 0.65
- },
- [LINE]: {
- width: 0.5
- }
- }
|