import { EntityEidType, BasicInfoAtomType, TransformAtomType, VisibleAtomType, ICoordinates, EntityFlagAtomType, EntityOutlinerAtomType } from '../data-type';
/**
 * @interface IAttributes
 * @param {number} cornerRadius
 * @param {number} cornerSplitNum
 * @param {number} baseWidth
 * @param {number} sideWidthScale
 */
export interface IAttributes {
    cornerRadius: number;
    cornerSplitNum: number;
    baseWidth: number;
    sideWidthScale: number;
}
/**
 * @interface ModelerFencePolylineAtomType
 * @param {Array<IAttributes>} attributes
 * @param {ICoordinates} coordinates
 * @param {boolean} bClosed
 */
export interface ModelerFencePolylineAtomType {
    attributes: Array<IAttributes>;
    coordinates: ICoordinates;
    bClosed: boolean;
}
/**
 * @interface ModelerFenceAtomType
 * @param {boolean} bUseVertexCorner
 * @param {boolean} bClosed
 * @param {boolean} bRotCol
 * @param {string} fenceMeshTypeName
 * @param {number} cornerRadius
 * @param {number} fenceScale
 */
export interface ModelerFenceAtomType {
    bUseVertexCorner: boolean;
    bRotCol: boolean;
    fenceMeshTypeName: string;
    cornerRadius: number;
    fenceScale: number;
}
/**
 * @interface ModelerFenceType
 * @extends EntityEidType,Partial<BasicInfoAtomType>,Partial<TransformAtomType>,Partial<VisibleAtomType>,Partial<ModelerFencePolylineAtomType>,Partial<EntityFlagAtomType>
 * @param {Partial<ModelerFenceAtomType>} ModelerFenceStyle (optional)
 */
export interface ModelerFenceType extends EntityEidType, Partial<BasicInfoAtomType>, Partial<TransformAtomType>, Partial<VisibleAtomType>, Partial<ModelerFencePolylineAtomType>, Partial<EntityFlagAtomType>, Partial<EntityOutlinerAtomType> {
    ModelerFenceStyle?: Partial<ModelerFenceAtomType>;
}
/**
 * @interface IGenerate
 * @param {Partial<ModelerFenceAtomType>} ModelerFenceAtom (optional)
 * @param {Partial<ModelerFencePolylineAtomType>} ModelerFencePolylineAtom (optional)
 * @param {Partial<BasicInfoAtomType>} BasicInfoAtom (optional)
 * @param {Partial<TransformAtomType>} TransformAtom (optional)
 * @param {Partial<VisibleAtomType>} VisibleAtom (optional)
 * @param {Partial<EntityFlagAtomType>} EntityFlagAtom (optional)
 */
export interface IGenerate {
    ModelerFenceAtom?: Partial<ModelerFenceAtomType>;
    ModelerFencePolylineAtom?: Partial<ModelerFencePolylineAtomType>;
    BasicInfoAtom?: Partial<BasicInfoAtomType>;
    TransformAtom?: Partial<TransformAtomType>;
    VisibleAtom?: Partial<VisibleAtomType>;
    EntityFlagAtom?: Partial<EntityFlagAtomType>;
    EntityOutlinerAtom?: Partial<EntityOutlinerAtomType>;
}
