read static method
Implementation
static ActorEllipse read(
ActorArtboard artboard, StreamReader reader, ActorEllipse component) {
ActorNode.read(artboard, reader, component);
component.width = reader.readFloat32('width');
component.height = reader.readFloat32('height');
return component;
}