UNPKG

devexpress-richedit

Version:

DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.

14 lines (13 loc) 457 B
import { Scene3DRotationInfo } from '../../drawing/scene3d-rotation-info'; import { HashBasedCache } from '../hash-based-cache'; export class Scene3DRotationInfoCache extends HashBasedCache { copyFrom(obj) { super.copyFrom(obj); } clone() { const result = new Scene3DRotationInfoCache(); result.copyFrom(this); return result; } } Scene3DRotationInfoCache.defaultItem = new Scene3DRotationInfo();