main
Last change
on this file was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago |
Update repo after prototype presentation
|
-
Property mode
set to
100644
|
File size:
459 bytes
|
Line | |
---|
1 | import { Shape, ShapeConfig } from '../Shape.js';
|
---|
2 | import { GetSet } from '../types.js';
|
---|
3 | import { Context } from '../Context.js';
|
---|
4 | export interface CircleConfig extends ShapeConfig {
|
---|
5 | radius?: number;
|
---|
6 | }
|
---|
7 | export declare class Circle extends Shape<CircleConfig> {
|
---|
8 | _sceneFunc(context: Context): void;
|
---|
9 | getWidth(): number;
|
---|
10 | getHeight(): number;
|
---|
11 | setWidth(width: number): void;
|
---|
12 | setHeight(height: number): void;
|
---|
13 | radius: GetSet<number, this>;
|
---|
14 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.