├── .editorconfig ├── .gitattributes ├── .gitignore ├── Abr ├── AbrBrush.cs ├── AbrBrushCollection.cs ├── AbrReader.cs └── Internal │ ├── BigEndianBinaryReader.cs │ ├── BrushSectionParser.cs │ ├── RLEHelper.cs │ ├── SampledBrush.cs │ └── SampledBrushCollection.cs ├── DynamicDraw.csproj ├── DynamicDraw.sln ├── GlobalSuppressions.cs ├── Gui ├── Components │ ├── Accordion.cs │ ├── CmbxTabletValueType.cs │ ├── ColorTextbox.cs │ ├── ColorWheel.cs │ ├── DoubleBufferedListView.cs │ ├── PanelSeparator.cs │ ├── SearchBox │ │ ├── DropdownControl.cs │ │ ├── SearchBox.cs │ │ └── StringMatcher.cs │ ├── Slider.cs │ ├── SliderColorMode.cs │ ├── SwatchBox.cs │ ├── TextboxDialog.cs │ ├── ThemedButton.cs │ ├── ThemedCheckbox.cs │ ├── ThemedComboBox.cs │ ├── ThemedListBox.cs │ ├── ThemedMenuRenderer.cs │ ├── ThemedMessageBox.cs │ └── ThemedPanel.cs ├── Constraints │ ├── CurveGraph.Designer.cs │ ├── CurveGraph.cs │ ├── CurveGraph.resx │ ├── DynamicConstraintEntry.Designer.cs │ ├── DynamicConstraintEntry.cs │ ├── DynamicConstraintEntry.resx │ ├── EditCurveDialog.Designer.cs │ ├── EditCurveDialog.cs │ └── EditCurveDialog.resx ├── Forms │ ├── ColorPickerDialog.cs │ ├── CommandDialog.cs │ ├── DynamicDrawWindow.cs │ ├── EditCustomAssetDirectories.cs │ ├── EditKeyboardShortcuts.cs │ └── PaletteComboboxOptions.cs └── Theme │ ├── SemanticTheme.cs │ ├── ThemeName.cs │ ├── ThemePreference.cs │ └── ThemeSlot.cs ├── Initialization ├── EffectPlugin.cs ├── PdnUserSettings.cs ├── PersistentSettings.cs ├── PluginSupportInfo.cs ├── RenderSettings.cs └── UserSettings.cs ├── Interop └── ExternalOps.cs ├── LICENSE ├── Localization ├── Strings.Designer.cs └── Strings.resx ├── Logic ├── BlendMode.cs ├── BrushImageLoadingSettings.cs ├── BrushSelectorItem.cs ├── BrushSelectorItemCollection.cs ├── BrushSettingConstraint.cs ├── BrushSettings.cs ├── ColorConversion │ ├── HSLuv.cs │ └── Rgb.cs ├── ColorUtils.cs ├── Command │ ├── Command.cs │ ├── CommandActionDataType.cs │ ├── CommandContext.cs │ ├── CommandContextHelper.cs │ ├── CommandManager.cs │ ├── CommandTarget.cs │ └── CommandTargetInfo.cs ├── Constraints │ ├── Constraint.cs │ ├── ConstraintTrigger.cs │ ├── ConstraintValueHandlingMethod.cs │ └── ConstraintValueSource.cs ├── DrawingUtils.cs ├── Effects │ ├── CustomEffect.cs │ ├── CustomEffectCompatibility.cs │ └── CustomEffectCompatibilityStatus.cs ├── InterpolationItem.cs ├── LayoutUtils.cs ├── PaletteSpecialType.cs ├── SettingsSerialization.cs ├── Smoothing.cs ├── SymmetryMode.cs ├── TempDirectory.cs └── Tool.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs └── Resources.resx ├── README.md ├── Resources ├── AddBrushIcon.png ├── BrCircle.png ├── BrCircleHard.png ├── BrCircleMedium.png ├── BrCircleRough.png ├── BrCircleSegmented.png ├── BrCircleSketchy.png ├── BrCracks.png ├── BrDirt.png ├── BrDirt2.png ├── BrDirt3.png ├── BrDotsBig.png ├── BrDotsTiny.png ├── BrFractalDirt.png ├── BrGrass.png ├── BrGravel.png ├── BrLine.png ├── BrRain.png ├── BrScales.png ├── BrSmoke.png ├── BrSpark.png ├── BrSpiral.png ├── BrSquare.png ├── ColorPickerCursor.cur ├── ColorPickerIcon.png ├── EffectSettingsIcon.png ├── icon.ico ├── icon.png ├── sprChecked.png ├── sprLocked.png ├── sprMenuAngle.png ├── sprMenuZoom.png ├── sprToolBrush.png ├── sprToolCloneStamp.png ├── sprToolEraser.png ├── sprToolLine.png ├── sprToolOrigin.png └── sprUnlocked.png └── TabletSupport ├── TabletService.cs └── WintabDN.dll /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/.gitignore -------------------------------------------------------------------------------- /Abr/AbrBrush.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Abr/AbrBrush.cs -------------------------------------------------------------------------------- /Abr/AbrBrushCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Abr/AbrBrushCollection.cs -------------------------------------------------------------------------------- /Abr/AbrReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Abr/AbrReader.cs -------------------------------------------------------------------------------- /Abr/Internal/BigEndianBinaryReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Abr/Internal/BigEndianBinaryReader.cs -------------------------------------------------------------------------------- /Abr/Internal/BrushSectionParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Abr/Internal/BrushSectionParser.cs -------------------------------------------------------------------------------- /Abr/Internal/RLEHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Abr/Internal/RLEHelper.cs -------------------------------------------------------------------------------- /Abr/Internal/SampledBrush.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Abr/Internal/SampledBrush.cs -------------------------------------------------------------------------------- /Abr/Internal/SampledBrushCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Abr/Internal/SampledBrushCollection.cs -------------------------------------------------------------------------------- /DynamicDraw.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/DynamicDraw.csproj -------------------------------------------------------------------------------- /DynamicDraw.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/DynamicDraw.sln -------------------------------------------------------------------------------- /GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/GlobalSuppressions.cs -------------------------------------------------------------------------------- /Gui/Components/Accordion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Gui/Components/Accordion.cs -------------------------------------------------------------------------------- /Gui/Components/CmbxTabletValueType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Gui/Components/CmbxTabletValueType.cs -------------------------------------------------------------------------------- /Gui/Components/ColorTextbox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Gui/Components/ColorTextbox.cs -------------------------------------------------------------------------------- /Gui/Components/ColorWheel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Gui/Components/ColorWheel.cs -------------------------------------------------------------------------------- /Gui/Components/DoubleBufferedListView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Gui/Components/DoubleBufferedListView.cs -------------------------------------------------------------------------------- /Gui/Components/PanelSeparator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Gui/Components/PanelSeparator.cs -------------------------------------------------------------------------------- /Gui/Components/SearchBox/DropdownControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Gui/Components/SearchBox/DropdownControl.cs -------------------------------------------------------------------------------- /Gui/Components/SearchBox/SearchBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Gui/Components/SearchBox/SearchBox.cs -------------------------------------------------------------------------------- /Gui/Components/SearchBox/StringMatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Gui/Components/SearchBox/StringMatcher.cs -------------------------------------------------------------------------------- /Gui/Components/Slider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Gui/Components/Slider.cs -------------------------------------------------------------------------------- /Gui/Components/SliderColorMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Gui/Components/SliderColorMode.cs -------------------------------------------------------------------------------- /Gui/Components/SwatchBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Gui/Components/SwatchBox.cs -------------------------------------------------------------------------------- /Gui/Components/TextboxDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Gui/Components/TextboxDialog.cs -------------------------------------------------------------------------------- /Gui/Components/ThemedButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Gui/Components/ThemedButton.cs -------------------------------------------------------------------------------- /Gui/Components/ThemedCheckbox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Gui/Components/ThemedCheckbox.cs -------------------------------------------------------------------------------- /Gui/Components/ThemedComboBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Gui/Components/ThemedComboBox.cs -------------------------------------------------------------------------------- /Gui/Components/ThemedListBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Gui/Components/ThemedListBox.cs -------------------------------------------------------------------------------- /Gui/Components/ThemedMenuRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Gui/Components/ThemedMenuRenderer.cs -------------------------------------------------------------------------------- /Gui/Components/ThemedMessageBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Gui/Components/ThemedMessageBox.cs -------------------------------------------------------------------------------- /Gui/Components/ThemedPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Gui/Components/ThemedPanel.cs -------------------------------------------------------------------------------- /Gui/Constraints/CurveGraph.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Gui/Constraints/CurveGraph.Designer.cs -------------------------------------------------------------------------------- /Gui/Constraints/CurveGraph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Gui/Constraints/CurveGraph.cs -------------------------------------------------------------------------------- /Gui/Constraints/CurveGraph.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Gui/Constraints/CurveGraph.resx -------------------------------------------------------------------------------- /Gui/Constraints/DynamicConstraintEntry.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Gui/Constraints/DynamicConstraintEntry.Designer.cs -------------------------------------------------------------------------------- /Gui/Constraints/DynamicConstraintEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Gui/Constraints/DynamicConstraintEntry.cs -------------------------------------------------------------------------------- /Gui/Constraints/DynamicConstraintEntry.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Gui/Constraints/DynamicConstraintEntry.resx -------------------------------------------------------------------------------- /Gui/Constraints/EditCurveDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Gui/Constraints/EditCurveDialog.Designer.cs -------------------------------------------------------------------------------- /Gui/Constraints/EditCurveDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Gui/Constraints/EditCurveDialog.cs -------------------------------------------------------------------------------- /Gui/Constraints/EditCurveDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Gui/Constraints/EditCurveDialog.resx -------------------------------------------------------------------------------- /Gui/Forms/ColorPickerDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Gui/Forms/ColorPickerDialog.cs -------------------------------------------------------------------------------- /Gui/Forms/CommandDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Gui/Forms/CommandDialog.cs -------------------------------------------------------------------------------- /Gui/Forms/DynamicDrawWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Gui/Forms/DynamicDrawWindow.cs -------------------------------------------------------------------------------- /Gui/Forms/EditCustomAssetDirectories.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Gui/Forms/EditCustomAssetDirectories.cs -------------------------------------------------------------------------------- /Gui/Forms/EditKeyboardShortcuts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Gui/Forms/EditKeyboardShortcuts.cs -------------------------------------------------------------------------------- /Gui/Forms/PaletteComboboxOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Gui/Forms/PaletteComboboxOptions.cs -------------------------------------------------------------------------------- /Gui/Theme/SemanticTheme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Gui/Theme/SemanticTheme.cs -------------------------------------------------------------------------------- /Gui/Theme/ThemeName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Gui/Theme/ThemeName.cs -------------------------------------------------------------------------------- /Gui/Theme/ThemePreference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Gui/Theme/ThemePreference.cs -------------------------------------------------------------------------------- /Gui/Theme/ThemeSlot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Gui/Theme/ThemeSlot.cs -------------------------------------------------------------------------------- /Initialization/EffectPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Initialization/EffectPlugin.cs -------------------------------------------------------------------------------- /Initialization/PdnUserSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Initialization/PdnUserSettings.cs -------------------------------------------------------------------------------- /Initialization/PersistentSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Initialization/PersistentSettings.cs -------------------------------------------------------------------------------- /Initialization/PluginSupportInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Initialization/PluginSupportInfo.cs -------------------------------------------------------------------------------- /Initialization/RenderSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Initialization/RenderSettings.cs -------------------------------------------------------------------------------- /Initialization/UserSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Initialization/UserSettings.cs -------------------------------------------------------------------------------- /Interop/ExternalOps.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Interop/ExternalOps.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/LICENSE -------------------------------------------------------------------------------- /Localization/Strings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Localization/Strings.Designer.cs -------------------------------------------------------------------------------- /Localization/Strings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Localization/Strings.resx -------------------------------------------------------------------------------- /Logic/BlendMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Logic/BlendMode.cs -------------------------------------------------------------------------------- /Logic/BrushImageLoadingSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Logic/BrushImageLoadingSettings.cs -------------------------------------------------------------------------------- /Logic/BrushSelectorItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Logic/BrushSelectorItem.cs -------------------------------------------------------------------------------- /Logic/BrushSelectorItemCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Logic/BrushSelectorItemCollection.cs -------------------------------------------------------------------------------- /Logic/BrushSettingConstraint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Logic/BrushSettingConstraint.cs -------------------------------------------------------------------------------- /Logic/BrushSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Logic/BrushSettings.cs -------------------------------------------------------------------------------- /Logic/ColorConversion/HSLuv.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Logic/ColorConversion/HSLuv.cs -------------------------------------------------------------------------------- /Logic/ColorConversion/Rgb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Logic/ColorConversion/Rgb.cs -------------------------------------------------------------------------------- /Logic/ColorUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Logic/ColorUtils.cs -------------------------------------------------------------------------------- /Logic/Command/Command.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Logic/Command/Command.cs -------------------------------------------------------------------------------- /Logic/Command/CommandActionDataType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Logic/Command/CommandActionDataType.cs -------------------------------------------------------------------------------- /Logic/Command/CommandContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Logic/Command/CommandContext.cs -------------------------------------------------------------------------------- /Logic/Command/CommandContextHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Logic/Command/CommandContextHelper.cs -------------------------------------------------------------------------------- /Logic/Command/CommandManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Logic/Command/CommandManager.cs -------------------------------------------------------------------------------- /Logic/Command/CommandTarget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Logic/Command/CommandTarget.cs -------------------------------------------------------------------------------- /Logic/Command/CommandTargetInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Logic/Command/CommandTargetInfo.cs -------------------------------------------------------------------------------- /Logic/Constraints/Constraint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Logic/Constraints/Constraint.cs -------------------------------------------------------------------------------- /Logic/Constraints/ConstraintTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Logic/Constraints/ConstraintTrigger.cs -------------------------------------------------------------------------------- /Logic/Constraints/ConstraintValueHandlingMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Logic/Constraints/ConstraintValueHandlingMethod.cs -------------------------------------------------------------------------------- /Logic/Constraints/ConstraintValueSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Logic/Constraints/ConstraintValueSource.cs -------------------------------------------------------------------------------- /Logic/DrawingUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Logic/DrawingUtils.cs -------------------------------------------------------------------------------- /Logic/Effects/CustomEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Logic/Effects/CustomEffect.cs -------------------------------------------------------------------------------- /Logic/Effects/CustomEffectCompatibility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Logic/Effects/CustomEffectCompatibility.cs -------------------------------------------------------------------------------- /Logic/Effects/CustomEffectCompatibilityStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Logic/Effects/CustomEffectCompatibilityStatus.cs -------------------------------------------------------------------------------- /Logic/InterpolationItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Logic/InterpolationItem.cs -------------------------------------------------------------------------------- /Logic/LayoutUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Logic/LayoutUtils.cs -------------------------------------------------------------------------------- /Logic/PaletteSpecialType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Logic/PaletteSpecialType.cs -------------------------------------------------------------------------------- /Logic/SettingsSerialization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Logic/SettingsSerialization.cs -------------------------------------------------------------------------------- /Logic/Smoothing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Logic/Smoothing.cs -------------------------------------------------------------------------------- /Logic/SymmetryMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Logic/SymmetryMode.cs -------------------------------------------------------------------------------- /Logic/TempDirectory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Logic/TempDirectory.cs -------------------------------------------------------------------------------- /Logic/Tool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Logic/Tool.cs -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Properties/Resources.resx -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/README.md -------------------------------------------------------------------------------- /Resources/AddBrushIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Resources/AddBrushIcon.png -------------------------------------------------------------------------------- /Resources/BrCircle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Resources/BrCircle.png -------------------------------------------------------------------------------- /Resources/BrCircleHard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Resources/BrCircleHard.png -------------------------------------------------------------------------------- /Resources/BrCircleMedium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Resources/BrCircleMedium.png -------------------------------------------------------------------------------- /Resources/BrCircleRough.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Resources/BrCircleRough.png -------------------------------------------------------------------------------- /Resources/BrCircleSegmented.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Resources/BrCircleSegmented.png -------------------------------------------------------------------------------- /Resources/BrCircleSketchy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Resources/BrCircleSketchy.png -------------------------------------------------------------------------------- /Resources/BrCracks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Resources/BrCracks.png -------------------------------------------------------------------------------- /Resources/BrDirt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Resources/BrDirt.png -------------------------------------------------------------------------------- /Resources/BrDirt2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Resources/BrDirt2.png -------------------------------------------------------------------------------- /Resources/BrDirt3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Resources/BrDirt3.png -------------------------------------------------------------------------------- /Resources/BrDotsBig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Resources/BrDotsBig.png -------------------------------------------------------------------------------- /Resources/BrDotsTiny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Resources/BrDotsTiny.png -------------------------------------------------------------------------------- /Resources/BrFractalDirt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Resources/BrFractalDirt.png -------------------------------------------------------------------------------- /Resources/BrGrass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Resources/BrGrass.png -------------------------------------------------------------------------------- /Resources/BrGravel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Resources/BrGravel.png -------------------------------------------------------------------------------- /Resources/BrLine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Resources/BrLine.png -------------------------------------------------------------------------------- /Resources/BrRain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Resources/BrRain.png -------------------------------------------------------------------------------- /Resources/BrScales.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Resources/BrScales.png -------------------------------------------------------------------------------- /Resources/BrSmoke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Resources/BrSmoke.png -------------------------------------------------------------------------------- /Resources/BrSpark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Resources/BrSpark.png -------------------------------------------------------------------------------- /Resources/BrSpiral.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Resources/BrSpiral.png -------------------------------------------------------------------------------- /Resources/BrSquare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Resources/BrSquare.png -------------------------------------------------------------------------------- /Resources/ColorPickerCursor.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Resources/ColorPickerCursor.cur -------------------------------------------------------------------------------- /Resources/ColorPickerIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Resources/ColorPickerIcon.png -------------------------------------------------------------------------------- /Resources/EffectSettingsIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Resources/EffectSettingsIcon.png -------------------------------------------------------------------------------- /Resources/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Resources/icon.ico -------------------------------------------------------------------------------- /Resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Resources/icon.png -------------------------------------------------------------------------------- /Resources/sprChecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Resources/sprChecked.png -------------------------------------------------------------------------------- /Resources/sprLocked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Resources/sprLocked.png -------------------------------------------------------------------------------- /Resources/sprMenuAngle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Resources/sprMenuAngle.png -------------------------------------------------------------------------------- /Resources/sprMenuZoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Resources/sprMenuZoom.png -------------------------------------------------------------------------------- /Resources/sprToolBrush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Resources/sprToolBrush.png -------------------------------------------------------------------------------- /Resources/sprToolCloneStamp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Resources/sprToolCloneStamp.png -------------------------------------------------------------------------------- /Resources/sprToolEraser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Resources/sprToolEraser.png -------------------------------------------------------------------------------- /Resources/sprToolLine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Resources/sprToolLine.png -------------------------------------------------------------------------------- /Resources/sprToolOrigin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Resources/sprToolOrigin.png -------------------------------------------------------------------------------- /Resources/sprUnlocked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/Resources/sprUnlocked.png -------------------------------------------------------------------------------- /TabletSupport/TabletService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/TabletSupport/TabletService.cs -------------------------------------------------------------------------------- /TabletSupport/WintabDN.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NinthDesertDude/Dynamic-Draw/HEAD/TabletSupport/WintabDN.dll --------------------------------------------------------------------------------