abstract class RenderNode : TransformNode
Abstract base Node for all node types that paint to the canvas.
abstract class Builder<B : RenderNode.Builder<B>> : TransformNode.Builder<B> |
val pivotX: List<Animation<*, Float>> |
|
val pivotY: List<Animation<*, Float>> |
|
val rotation: List<Animation<*, Float>> |
|
val scaleX: List<Animation<*, Float>> |
|
val scaleY: List<Animation<*, Float>> |
|
val translateX: List<Animation<*, Float>> |
|
val translateY: List<Animation<*, Float>> |
class CircleNode : RenderNode
A Node that paints a circle. |
|
class EllipseNode : RenderNode
A Node that paints an ellipse. |
|
class LineNode : RenderNode
A Node that paints a line. |
|
class PathNode : RenderNode
A Node that paints a path. |
|
class RectangleNode : RenderNode
A Node that paints a rectangle. |