- Implemented feather brush tool in the brushRaster module, allowing for feathered edges in brush strokes. - Added new FeatherControls component for UI adjustments of feather settings including size, radius, strength, and smoothing. - Updated brush preview logic to accommodate feather tool alongside existing brush and eraser tools. - Enhanced layer rendering to support feather mask previews and interactions. - Introduced blending logic for feathered strokes to mix blurred mask values with original pixels. - Added unit tests for feather blending functionality and tool keybindings. - Updated cursor handling to reflect feather tool usage.
9 lines
647 B
TypeScript
9 lines
647 B
TypeScript
export type { AppState, EditorState, SelectionState, ViewportState } from "./state";
|
|
export type { BrushSettings, ChromaKeySettings, FeatherSettings, MagicWandSettings, InteractionMode, OperationId, ToolId, ToolState } from "./tools";
|
|
export { initialToolState } from "./tools";
|
|
export { createInitialAppState, initialEditorState } from "./initial-state";
|
|
export type { AppStore, StateListener } from "./store";
|
|
export { createAppStore } from "./store";
|
|
export type { DocumentReadIndex, IndexedLayerInfo } from "./document-indexes";
|
|
export { createDocumentReadIndex, forEachLayerBackToFront, resolveIndexedLayerBounds } from "./document-indexes";
|