Protected
contentBBoxThe bounding box of this component.
getBBox, by default, returns contentBBox
.
This must be set by components.
If this changes, EditorImage.queueRerenderOf should be called for this object (provided that this object has been added to the editor.)
Note: This value is ignored if getSizingMode returns FillScreen
or FillImage
.
Readonly
iseslint-disable-next-line @typescript-eslint/prefer-as-const
Protected
lastThe timestamp (milliseconds) at which the component was last changed (i.e. created/translated).
Protected
applyPrivate helper for transformBy: Apply the given transformation to all points of this.
Attach data that can be used while exporting the component (e.g. to SVG).
This is intended for use by an ImageLoader.
Returns a copy of this component.
Protected
createComponent-specific implementation of clone.
Returns information about how this component should be displayed (e.g. fill the screen or get its size from getBBox).
EditorImage.queueRerenderOf must be called to apply changes to the output of this method if this component has already been added to an EditorImage.
a partial representation of this component's style.
true if lineSegment
intersects this component.
true if this component intersects rect
-- it is entirely contained
within the rectangle or one of the rectangle's edges intersects this component.
The default implementation assumes that this.getExactBBox()
returns a tight bounding box
-- that any horiziontal/vertical line that intersects this' boounding box also
intersects a point in this component. If this is not the case, components must override
this function.
Optimization
Should return true
if this component covers the entire visibleRect
and would prevent anything below this component from being visible.
Should return false
otherwise.
Called when this component is added to the given image.
Renders this component onto the given canvas
.
If visibleRect
is given, it should be the region of canvas
that is visible --
rendering anything outside of visibleRect
should have no visible effect on the
resultant image.
For optimal performance, implementers should call canvas.startObject
and canvas.endObject
before and after rendering.
Optional
visibleRect: Rect2Convert the component to an object that can be passed to
JSON.stringify
.
Do not rely on the output of this function to take a particular form — this function's output can change form without a major version increase.
Protected
serializeReturn null iff this object cannot be safely serialized/deserialized.
Returns a command that updates this component's z-index.
Returns a command that, when applied, transforms this by [affineTransfm] and updates the editor.
The transformed component is also moved to the top (use AbstractComponent#setZIndexAndTransformBy to avoid this behavior).
Returns a Command that updates portions of this component's style
to the given style
.
Optional
withOptional method: Divides this component into sections roughly along the given path,
removing parts that are roughly within shape
.
Notes:
undefined
if unsupported.viewport
should be provided to determine how newly-added points should be rounded.
Static
deserializeConvert a string or an object produced by JSON.parse
into an AbstractComponent
.
Static
ofStatic
registerStore the deserialization callback (or lack of it) for [componentKind]. If components are registered multiple times (as may be done in automated tests), the most recent deserialization callback is used.
Represents the background of the editor's canvas.