├── .idea ├── .gitignore ├── BlenderDrawDev.iml ├── dictionaries │ └── okuma.xml ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── workspace.xml ├── Asset 1.png ├── ExternalModules ├── PIL │ ├── BdfFontFile.py │ ├── BlpImagePlugin.py │ ├── BmpImagePlugin.py │ ├── BufrStubImagePlugin.py │ ├── ContainerIO.py │ ├── CurImagePlugin.py │ ├── DcxImagePlugin.py │ ├── DdsImagePlugin.py │ ├── EpsImagePlugin.py │ ├── ExifTags.py │ ├── FitsStubImagePlugin.py │ ├── FliImagePlugin.py │ ├── FontFile.py │ ├── FpxImagePlugin.py │ ├── FtexImagePlugin.py │ ├── GbrImagePlugin.py │ ├── GdImageFile.py │ ├── GifImagePlugin.py │ ├── GimpGradientFile.py │ ├── GimpPaletteFile.py │ ├── GribStubImagePlugin.py │ ├── Hdf5StubImagePlugin.py │ ├── IcnsImagePlugin.py │ ├── IcoImagePlugin.py │ ├── ImImagePlugin.py │ ├── Image.py │ ├── ImageChops.py │ ├── ImageCms.py │ ├── ImageColor.py │ ├── ImageDraw.py │ ├── ImageDraw2.py │ ├── ImageEnhance.py │ ├── ImageFile.py │ ├── ImageFilter.py │ ├── ImageFont.py │ ├── ImageGrab.py │ ├── ImageMath.py │ ├── ImageMode.py │ ├── ImageMorph.py │ ├── ImageOps.py │ ├── ImagePalette.py │ ├── ImagePath.py │ ├── ImageQt.py │ ├── ImageSequence.py │ ├── ImageShow.py │ ├── ImageStat.py │ ├── ImageTk.py │ ├── ImageTransform.py │ ├── ImageWin.py │ ├── ImtImagePlugin.py │ ├── IptcImagePlugin.py │ ├── Jpeg2KImagePlugin.py │ ├── JpegImagePlugin.py │ ├── JpegPresets.py │ ├── McIdasImagePlugin.py │ ├── MicImagePlugin.py │ ├── MpegImagePlugin.py │ ├── MpoImagePlugin.py │ ├── MspImagePlugin.py │ ├── PSDraw.py │ ├── PaletteFile.py │ ├── PalmImagePlugin.py │ ├── PcdImagePlugin.py │ ├── PcfFontFile.py │ ├── PcxImagePlugin.py │ ├── PdfImagePlugin.py │ ├── PdfParser.py │ ├── PixarImagePlugin.py │ ├── PngImagePlugin.py │ ├── PpmImagePlugin.py │ ├── PsdImagePlugin.py │ ├── PyAccess.py │ ├── SgiImagePlugin.py │ ├── SpiderImagePlugin.py │ ├── SunImagePlugin.py │ ├── TarIO.py │ ├── TgaImagePlugin.py │ ├── TiffImagePlugin.py │ ├── TiffTags.py │ ├── WalImageFile.py │ ├── WebPImagePlugin.py │ ├── WmfImagePlugin.py │ ├── XVThumbImagePlugin.py │ ├── XbmImagePlugin.py │ ├── XpmImagePlugin.py │ ├── __init__.py │ ├── __pycache__ │ │ ├── BmpImagePlugin.cpython-37.pyc │ │ ├── GifImagePlugin.cpython-37.pyc │ │ ├── GimpGradientFile.cpython-37.pyc │ │ ├── GimpPaletteFile.cpython-37.pyc │ │ ├── Image.cpython-37.pyc │ │ ├── ImageChops.cpython-37.pyc │ │ ├── ImageColor.cpython-37.pyc │ │ ├── ImageFile.cpython-37.pyc │ │ ├── ImageMode.cpython-37.pyc │ │ ├── ImagePalette.cpython-37.pyc │ │ ├── ImageSequence.cpython-37.pyc │ │ ├── JpegImagePlugin.cpython-37.pyc │ │ ├── JpegPresets.cpython-37.pyc │ │ ├── PaletteFile.cpython-37.pyc │ │ ├── PngImagePlugin.cpython-37.pyc │ │ ├── PpmImagePlugin.cpython-37.pyc │ │ ├── TiffImagePlugin.cpython-37.pyc │ │ ├── TiffTags.cpython-37.pyc │ │ ├── __init__.cpython-37.pyc │ │ ├── _binary.cpython-37.pyc │ │ ├── _util.cpython-37.pyc │ │ └── _version.cpython-37.pyc │ ├── _binary.py │ ├── _imaging.cp37-win_amd64.pyd │ ├── _imagingcms.cp37-win_amd64.pyd │ ├── _imagingft.cp37-win_amd64.pyd │ ├── _imagingmath.cp37-win_amd64.pyd │ ├── _imagingmorph.cp37-win_amd64.pyd │ ├── _imagingtk.cp37-win_amd64.pyd │ ├── _tkinter_finder.py │ ├── _util.py │ ├── _version.py │ ├── _webp.cp37-win_amd64.pyd │ └── features.py ├── __init__.py ├── __pycache__ │ └── __init__.cpython-37.pyc ├── multipledispatch-0.6.0.dist-info │ ├── INSTALLER │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ └── top_level.txt ├── multipledispatch │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-37.pyc │ │ ├── conflict.cpython-37.pyc │ │ ├── core.cpython-37.pyc │ │ ├── dispatcher.cpython-37.pyc │ │ ├── six.cpython-37.pyc │ │ ├── utils.cpython-37.pyc │ │ └── variadic.cpython-37.pyc │ ├── conflict.py │ ├── core.py │ ├── dispatcher.py │ ├── six.py │ ├── utils.py │ └── variadic.py ├── pyrr-0.10.3.dist-info │ ├── INSTALLER │ ├── LICENSE │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ └── top_level.txt └── pyrr │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-37.pyc │ ├── aabb.cpython-37.pyc │ ├── aambb.cpython-37.pyc │ ├── euler.cpython-37.pyc │ ├── geometric_tests.cpython-37.pyc │ ├── geometry.cpython-37.pyc │ ├── integer.cpython-37.pyc │ ├── line.cpython-37.pyc │ ├── matrix33.cpython-37.pyc │ ├── matrix44.cpython-37.pyc │ ├── plane.cpython-37.pyc │ ├── quaternion.cpython-37.pyc │ ├── ray.cpython-37.pyc │ ├── rectangle.cpython-37.pyc │ ├── sphere.cpython-37.pyc │ ├── trig.cpython-37.pyc │ ├── utils.cpython-37.pyc │ ├── vector.cpython-37.pyc │ ├── vector3.cpython-37.pyc │ ├── vector4.cpython-37.pyc │ └── version.cpython-37.pyc │ ├── aabb.py │ ├── aambb.py │ ├── euler.py │ ├── geometric_tests.py │ ├── geometry.py │ ├── integer.py │ ├── line.py │ ├── matrix33.py │ ├── matrix44.py │ ├── objects │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-37.pyc │ │ ├── base.cpython-37.pyc │ │ ├── matrix33.cpython-37.pyc │ │ ├── matrix44.cpython-37.pyc │ │ ├── quaternion.cpython-37.pyc │ │ ├── vector3.cpython-37.pyc │ │ └── vector4.cpython-37.pyc │ ├── base.py │ ├── matrix33.py │ ├── matrix44.py │ ├── quaternion.py │ ├── vector3.py │ └── vector4.py │ ├── plane.py │ ├── quaternion.py │ ├── ray.py │ ├── rectangle.py │ ├── sphere.py │ ├── trig.py │ ├── utils.py │ ├── vector.py │ ├── vector3.py │ ├── vector4.py │ └── version.py ├── Image_loader.py ├── KeyframeNudge_scripts ├── Grease │ ├── Grease_ComeOver.py │ ├── Grease_HoldFor.py │ ├── Grease_Nudge.py │ ├── Grease_PushPull.py │ ├── Grease_SpreadTo.py │ ├── Progress.py │ └── __pycache__ │ │ ├── Grease_ComeOver.cpython-37.pyc │ │ ├── Grease_HoldFor.cpython-37.pyc │ │ ├── Grease_Nudge.cpython-37.pyc │ │ ├── Grease_PushPull.cpython-37.pyc │ │ └── Grease_SpreadTo.cpython-37.pyc └── Keyframe │ ├── ComeOver.py │ ├── Hold_For.py │ ├── Inbetween.py │ ├── Inbetween_Test_scene.blend │ ├── Inbetween_Test_scene.blend1 │ ├── Keyframe_Nudge.py │ ├── Nudge.py │ ├── Push_Pull.py │ ├── Tools.py │ └── __pycache__ │ ├── ComeOver.cpython-37.pyc │ ├── Hold_For.cpython-37.pyc │ ├── Inbetween.cpython-37.pyc │ ├── Keyframe_Nudge.cpython-37.pyc │ ├── Nudge.cpython-37.pyc │ ├── Push_Pull.cpython-37.pyc │ └── Tools.cpython-37.pyc ├── Logger.py ├── Logs ├── Shapes ├── Widgets.log ├── developer.log ├── test_Triangle └── test_Triangle.log ├── Main.py ├── README.md ├── Shader_Loader.py ├── UI ├── Fonts │ ├── Exo2.0-Bold.otf │ ├── Exo2.0-ExtraBold.otf │ ├── Exo2.0-Light.otf │ ├── Exo2.0-Regular.otf │ ├── bonn_bold.ttf │ ├── bonn_light.ttf │ └── bonn_regular.ttf ├── Panels │ ├── Keyframe_Nudge.py │ ├── PathfinderTest.py │ └── __pycache__ │ │ └── Keyframe_Nudge.cpython-37.pyc ├── Shaders │ ├── Debug_frag.glsl │ ├── Shape_frag.glsl │ ├── Shape_vert.glsl │ ├── Slider_frag.glsl │ ├── flat_fragment.glsl │ ├── flat_tex_mask_frag.glsl │ ├── flat_vertex.glsl │ ├── shader.log │ ├── spread_to_frag.glsl │ └── textures │ │ ├── NUDGE.png │ │ └── NUDGE.png~ ├── Shapes │ ├── Line.py │ ├── Rectangle.py │ ├── Test_Pathfinder.py │ ├── Text.py │ ├── Triangle.py │ ├── UVRectangle.py │ ├── UVRectangle2.py │ ├── UVRectangleMasked.py │ ├── UVRectangle_Debug.py │ ├── Unused_shapes.py │ └── __pycache__ │ │ ├── Line.cpython-37.pyc │ │ ├── Rectangle.cpython-37.pyc │ │ ├── Text.cpython-37.pyc │ │ ├── Triangle.cpython-37.pyc │ │ ├── UVRectangle.cpython-37.pyc │ │ ├── UVRectangle2.cpython-37.pyc │ │ ├── UVRectangleMasked.cpython-37.pyc │ │ ├── UVRectangle_Debug.cpython-37.pyc │ │ └── Unused_shapes.cpython-37.pyc └── Widgets │ ├── Pathfinder_test.py │ ├── RectangleButton.py │ ├── RectangleButton2.py │ ├── Slider.py │ ├── StateButton.py │ ├── StateButton02.py │ ├── TextField.py │ └── __pycache__ │ ├── RectangleButton.cpython-37.pyc │ ├── RectangleButton2.cpython-37.pyc │ ├── Slider.cpython-37.pyc │ ├── StateButton.cpython-37.pyc │ ├── StateButton02.cpython-37.pyc │ └── TextField.cpython-37.pyc ├── __init__.py ├── __pycache__ ├── Image_loader.cpython-37.pyc ├── Logger.cpython-37.pyc ├── Main.cpython-37.pyc ├── Shader_Loader.cpython-37.pyc ├── __init__.cpython-37.pyc ├── get_data.cpython-37.pyc ├── small_tools.cpython-37.pyc └── testfield.cpython-37.pyc ├── get_data.py ├── imgs ├── ComeOver_Button.png ├── Frames-Seconds_button.png ├── Hold_For-Button.png ├── Inbetween_Slider.png ├── Main.png ├── Main.png~ ├── Panel_Mode.png ├── Plus-Minus_buttons.png ├── Push-PullButton.png ├── Translate_Panel.png └── Value_Input_Field.png ├── small_tools.py └── testfield.py /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/BlenderDrawDev.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/.idea/BlenderDrawDev.iml -------------------------------------------------------------------------------- /.idea/dictionaries/okuma.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/.idea/dictionaries/okuma.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /Asset 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/Asset 1.png -------------------------------------------------------------------------------- /ExternalModules/PIL/BdfFontFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/BdfFontFile.py -------------------------------------------------------------------------------- /ExternalModules/PIL/BlpImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/BlpImagePlugin.py -------------------------------------------------------------------------------- /ExternalModules/PIL/BmpImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/BmpImagePlugin.py -------------------------------------------------------------------------------- /ExternalModules/PIL/BufrStubImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/BufrStubImagePlugin.py -------------------------------------------------------------------------------- /ExternalModules/PIL/ContainerIO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/ContainerIO.py -------------------------------------------------------------------------------- /ExternalModules/PIL/CurImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/CurImagePlugin.py -------------------------------------------------------------------------------- /ExternalModules/PIL/DcxImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/DcxImagePlugin.py -------------------------------------------------------------------------------- /ExternalModules/PIL/DdsImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/DdsImagePlugin.py -------------------------------------------------------------------------------- /ExternalModules/PIL/EpsImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/EpsImagePlugin.py -------------------------------------------------------------------------------- /ExternalModules/PIL/ExifTags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/ExifTags.py -------------------------------------------------------------------------------- /ExternalModules/PIL/FitsStubImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/FitsStubImagePlugin.py -------------------------------------------------------------------------------- /ExternalModules/PIL/FliImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/FliImagePlugin.py -------------------------------------------------------------------------------- /ExternalModules/PIL/FontFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/FontFile.py -------------------------------------------------------------------------------- /ExternalModules/PIL/FpxImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/FpxImagePlugin.py -------------------------------------------------------------------------------- /ExternalModules/PIL/FtexImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/FtexImagePlugin.py -------------------------------------------------------------------------------- /ExternalModules/PIL/GbrImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/GbrImagePlugin.py -------------------------------------------------------------------------------- /ExternalModules/PIL/GdImageFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/GdImageFile.py -------------------------------------------------------------------------------- /ExternalModules/PIL/GifImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/GifImagePlugin.py -------------------------------------------------------------------------------- /ExternalModules/PIL/GimpGradientFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/GimpGradientFile.py -------------------------------------------------------------------------------- /ExternalModules/PIL/GimpPaletteFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/GimpPaletteFile.py -------------------------------------------------------------------------------- /ExternalModules/PIL/GribStubImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/GribStubImagePlugin.py -------------------------------------------------------------------------------- /ExternalModules/PIL/Hdf5StubImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/Hdf5StubImagePlugin.py -------------------------------------------------------------------------------- /ExternalModules/PIL/IcnsImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/IcnsImagePlugin.py -------------------------------------------------------------------------------- /ExternalModules/PIL/IcoImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/IcoImagePlugin.py -------------------------------------------------------------------------------- /ExternalModules/PIL/ImImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/ImImagePlugin.py -------------------------------------------------------------------------------- /ExternalModules/PIL/Image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/Image.py -------------------------------------------------------------------------------- /ExternalModules/PIL/ImageChops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/ImageChops.py -------------------------------------------------------------------------------- /ExternalModules/PIL/ImageCms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/ImageCms.py -------------------------------------------------------------------------------- /ExternalModules/PIL/ImageColor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/ImageColor.py -------------------------------------------------------------------------------- /ExternalModules/PIL/ImageDraw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/ImageDraw.py -------------------------------------------------------------------------------- /ExternalModules/PIL/ImageDraw2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/ImageDraw2.py -------------------------------------------------------------------------------- /ExternalModules/PIL/ImageEnhance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/ImageEnhance.py -------------------------------------------------------------------------------- /ExternalModules/PIL/ImageFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/ImageFile.py -------------------------------------------------------------------------------- /ExternalModules/PIL/ImageFilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/ImageFilter.py -------------------------------------------------------------------------------- /ExternalModules/PIL/ImageFont.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/ImageFont.py -------------------------------------------------------------------------------- /ExternalModules/PIL/ImageGrab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/ImageGrab.py -------------------------------------------------------------------------------- /ExternalModules/PIL/ImageMath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/ImageMath.py -------------------------------------------------------------------------------- /ExternalModules/PIL/ImageMode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/ImageMode.py -------------------------------------------------------------------------------- /ExternalModules/PIL/ImageMorph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/ImageMorph.py -------------------------------------------------------------------------------- /ExternalModules/PIL/ImageOps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/ImageOps.py -------------------------------------------------------------------------------- /ExternalModules/PIL/ImagePalette.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/ImagePalette.py -------------------------------------------------------------------------------- /ExternalModules/PIL/ImagePath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/ImagePath.py -------------------------------------------------------------------------------- /ExternalModules/PIL/ImageQt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/ImageQt.py -------------------------------------------------------------------------------- /ExternalModules/PIL/ImageSequence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/ImageSequence.py -------------------------------------------------------------------------------- /ExternalModules/PIL/ImageShow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/ImageShow.py -------------------------------------------------------------------------------- /ExternalModules/PIL/ImageStat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/ImageStat.py -------------------------------------------------------------------------------- /ExternalModules/PIL/ImageTk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/ImageTk.py -------------------------------------------------------------------------------- /ExternalModules/PIL/ImageTransform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/ImageTransform.py -------------------------------------------------------------------------------- /ExternalModules/PIL/ImageWin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/ImageWin.py -------------------------------------------------------------------------------- /ExternalModules/PIL/ImtImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/ImtImagePlugin.py -------------------------------------------------------------------------------- /ExternalModules/PIL/IptcImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/IptcImagePlugin.py -------------------------------------------------------------------------------- /ExternalModules/PIL/Jpeg2KImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/Jpeg2KImagePlugin.py -------------------------------------------------------------------------------- /ExternalModules/PIL/JpegImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/JpegImagePlugin.py -------------------------------------------------------------------------------- /ExternalModules/PIL/JpegPresets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/JpegPresets.py -------------------------------------------------------------------------------- /ExternalModules/PIL/McIdasImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/McIdasImagePlugin.py -------------------------------------------------------------------------------- /ExternalModules/PIL/MicImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/MicImagePlugin.py -------------------------------------------------------------------------------- /ExternalModules/PIL/MpegImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/MpegImagePlugin.py -------------------------------------------------------------------------------- /ExternalModules/PIL/MpoImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/MpoImagePlugin.py -------------------------------------------------------------------------------- /ExternalModules/PIL/MspImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/MspImagePlugin.py -------------------------------------------------------------------------------- /ExternalModules/PIL/PSDraw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/PSDraw.py -------------------------------------------------------------------------------- /ExternalModules/PIL/PaletteFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/PaletteFile.py -------------------------------------------------------------------------------- /ExternalModules/PIL/PalmImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/PalmImagePlugin.py -------------------------------------------------------------------------------- /ExternalModules/PIL/PcdImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/PcdImagePlugin.py -------------------------------------------------------------------------------- /ExternalModules/PIL/PcfFontFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/PcfFontFile.py -------------------------------------------------------------------------------- /ExternalModules/PIL/PcxImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/PcxImagePlugin.py -------------------------------------------------------------------------------- /ExternalModules/PIL/PdfImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/PdfImagePlugin.py -------------------------------------------------------------------------------- /ExternalModules/PIL/PdfParser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/PdfParser.py -------------------------------------------------------------------------------- /ExternalModules/PIL/PixarImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/PixarImagePlugin.py -------------------------------------------------------------------------------- /ExternalModules/PIL/PngImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/PngImagePlugin.py -------------------------------------------------------------------------------- /ExternalModules/PIL/PpmImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/PpmImagePlugin.py -------------------------------------------------------------------------------- /ExternalModules/PIL/PsdImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/PsdImagePlugin.py -------------------------------------------------------------------------------- /ExternalModules/PIL/PyAccess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/PyAccess.py -------------------------------------------------------------------------------- /ExternalModules/PIL/SgiImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/SgiImagePlugin.py -------------------------------------------------------------------------------- /ExternalModules/PIL/SpiderImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/SpiderImagePlugin.py -------------------------------------------------------------------------------- /ExternalModules/PIL/SunImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/SunImagePlugin.py -------------------------------------------------------------------------------- /ExternalModules/PIL/TarIO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/TarIO.py -------------------------------------------------------------------------------- /ExternalModules/PIL/TgaImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/TgaImagePlugin.py -------------------------------------------------------------------------------- /ExternalModules/PIL/TiffImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/TiffImagePlugin.py -------------------------------------------------------------------------------- /ExternalModules/PIL/TiffTags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/TiffTags.py -------------------------------------------------------------------------------- /ExternalModules/PIL/WalImageFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/WalImageFile.py -------------------------------------------------------------------------------- /ExternalModules/PIL/WebPImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/WebPImagePlugin.py -------------------------------------------------------------------------------- /ExternalModules/PIL/WmfImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/WmfImagePlugin.py -------------------------------------------------------------------------------- /ExternalModules/PIL/XVThumbImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/XVThumbImagePlugin.py -------------------------------------------------------------------------------- /ExternalModules/PIL/XbmImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/XbmImagePlugin.py -------------------------------------------------------------------------------- /ExternalModules/PIL/XpmImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/XpmImagePlugin.py -------------------------------------------------------------------------------- /ExternalModules/PIL/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/__init__.py -------------------------------------------------------------------------------- /ExternalModules/PIL/__pycache__/BmpImagePlugin.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/__pycache__/BmpImagePlugin.cpython-37.pyc -------------------------------------------------------------------------------- /ExternalModules/PIL/__pycache__/GifImagePlugin.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/__pycache__/GifImagePlugin.cpython-37.pyc -------------------------------------------------------------------------------- /ExternalModules/PIL/__pycache__/GimpGradientFile.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/__pycache__/GimpGradientFile.cpython-37.pyc -------------------------------------------------------------------------------- /ExternalModules/PIL/__pycache__/GimpPaletteFile.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/__pycache__/GimpPaletteFile.cpython-37.pyc -------------------------------------------------------------------------------- /ExternalModules/PIL/__pycache__/Image.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/__pycache__/Image.cpython-37.pyc -------------------------------------------------------------------------------- /ExternalModules/PIL/__pycache__/ImageChops.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/__pycache__/ImageChops.cpython-37.pyc -------------------------------------------------------------------------------- /ExternalModules/PIL/__pycache__/ImageColor.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/__pycache__/ImageColor.cpython-37.pyc -------------------------------------------------------------------------------- /ExternalModules/PIL/__pycache__/ImageFile.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/__pycache__/ImageFile.cpython-37.pyc -------------------------------------------------------------------------------- /ExternalModules/PIL/__pycache__/ImageMode.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/__pycache__/ImageMode.cpython-37.pyc -------------------------------------------------------------------------------- /ExternalModules/PIL/__pycache__/ImagePalette.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/__pycache__/ImagePalette.cpython-37.pyc -------------------------------------------------------------------------------- /ExternalModules/PIL/__pycache__/ImageSequence.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/__pycache__/ImageSequence.cpython-37.pyc -------------------------------------------------------------------------------- /ExternalModules/PIL/__pycache__/JpegImagePlugin.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/__pycache__/JpegImagePlugin.cpython-37.pyc -------------------------------------------------------------------------------- /ExternalModules/PIL/__pycache__/JpegPresets.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/__pycache__/JpegPresets.cpython-37.pyc -------------------------------------------------------------------------------- /ExternalModules/PIL/__pycache__/PaletteFile.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/__pycache__/PaletteFile.cpython-37.pyc -------------------------------------------------------------------------------- /ExternalModules/PIL/__pycache__/PngImagePlugin.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/__pycache__/PngImagePlugin.cpython-37.pyc -------------------------------------------------------------------------------- /ExternalModules/PIL/__pycache__/PpmImagePlugin.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/__pycache__/PpmImagePlugin.cpython-37.pyc -------------------------------------------------------------------------------- /ExternalModules/PIL/__pycache__/TiffImagePlugin.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/__pycache__/TiffImagePlugin.cpython-37.pyc -------------------------------------------------------------------------------- /ExternalModules/PIL/__pycache__/TiffTags.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/__pycache__/TiffTags.cpython-37.pyc -------------------------------------------------------------------------------- /ExternalModules/PIL/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /ExternalModules/PIL/__pycache__/_binary.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/__pycache__/_binary.cpython-37.pyc -------------------------------------------------------------------------------- /ExternalModules/PIL/__pycache__/_util.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/__pycache__/_util.cpython-37.pyc -------------------------------------------------------------------------------- /ExternalModules/PIL/__pycache__/_version.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/__pycache__/_version.cpython-37.pyc -------------------------------------------------------------------------------- /ExternalModules/PIL/_binary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/_binary.py -------------------------------------------------------------------------------- /ExternalModules/PIL/_imaging.cp37-win_amd64.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/_imaging.cp37-win_amd64.pyd -------------------------------------------------------------------------------- /ExternalModules/PIL/_imagingcms.cp37-win_amd64.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/_imagingcms.cp37-win_amd64.pyd -------------------------------------------------------------------------------- /ExternalModules/PIL/_imagingft.cp37-win_amd64.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/_imagingft.cp37-win_amd64.pyd -------------------------------------------------------------------------------- /ExternalModules/PIL/_imagingmath.cp37-win_amd64.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/_imagingmath.cp37-win_amd64.pyd -------------------------------------------------------------------------------- /ExternalModules/PIL/_imagingmorph.cp37-win_amd64.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/_imagingmorph.cp37-win_amd64.pyd -------------------------------------------------------------------------------- /ExternalModules/PIL/_imagingtk.cp37-win_amd64.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/_imagingtk.cp37-win_amd64.pyd -------------------------------------------------------------------------------- /ExternalModules/PIL/_tkinter_finder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/_tkinter_finder.py -------------------------------------------------------------------------------- /ExternalModules/PIL/_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/_util.py -------------------------------------------------------------------------------- /ExternalModules/PIL/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/_version.py -------------------------------------------------------------------------------- /ExternalModules/PIL/_webp.cp37-win_amd64.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/_webp.cp37-win_amd64.pyd -------------------------------------------------------------------------------- /ExternalModules/PIL/features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/PIL/features.py -------------------------------------------------------------------------------- /ExternalModules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ExternalModules/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /ExternalModules/multipledispatch-0.6.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /ExternalModules/multipledispatch-0.6.0.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/multipledispatch-0.6.0.dist-info/METADATA -------------------------------------------------------------------------------- /ExternalModules/multipledispatch-0.6.0.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/multipledispatch-0.6.0.dist-info/RECORD -------------------------------------------------------------------------------- /ExternalModules/multipledispatch-0.6.0.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/multipledispatch-0.6.0.dist-info/WHEEL -------------------------------------------------------------------------------- /ExternalModules/multipledispatch-0.6.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | multipledispatch 2 | -------------------------------------------------------------------------------- /ExternalModules/multipledispatch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/multipledispatch/__init__.py -------------------------------------------------------------------------------- /ExternalModules/multipledispatch/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/multipledispatch/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /ExternalModules/multipledispatch/__pycache__/conflict.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/multipledispatch/__pycache__/conflict.cpython-37.pyc -------------------------------------------------------------------------------- /ExternalModules/multipledispatch/__pycache__/core.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/multipledispatch/__pycache__/core.cpython-37.pyc -------------------------------------------------------------------------------- /ExternalModules/multipledispatch/__pycache__/dispatcher.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/multipledispatch/__pycache__/dispatcher.cpython-37.pyc -------------------------------------------------------------------------------- /ExternalModules/multipledispatch/__pycache__/six.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/multipledispatch/__pycache__/six.cpython-37.pyc -------------------------------------------------------------------------------- /ExternalModules/multipledispatch/__pycache__/utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/multipledispatch/__pycache__/utils.cpython-37.pyc -------------------------------------------------------------------------------- /ExternalModules/multipledispatch/__pycache__/variadic.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/multipledispatch/__pycache__/variadic.cpython-37.pyc -------------------------------------------------------------------------------- /ExternalModules/multipledispatch/conflict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/multipledispatch/conflict.py -------------------------------------------------------------------------------- /ExternalModules/multipledispatch/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/multipledispatch/core.py -------------------------------------------------------------------------------- /ExternalModules/multipledispatch/dispatcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/multipledispatch/dispatcher.py -------------------------------------------------------------------------------- /ExternalModules/multipledispatch/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/multipledispatch/six.py -------------------------------------------------------------------------------- /ExternalModules/multipledispatch/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/multipledispatch/utils.py -------------------------------------------------------------------------------- /ExternalModules/multipledispatch/variadic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/multipledispatch/variadic.py -------------------------------------------------------------------------------- /ExternalModules/pyrr-0.10.3.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /ExternalModules/pyrr-0.10.3.dist-info/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/pyrr-0.10.3.dist-info/LICENSE -------------------------------------------------------------------------------- /ExternalModules/pyrr-0.10.3.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/pyrr-0.10.3.dist-info/METADATA -------------------------------------------------------------------------------- /ExternalModules/pyrr-0.10.3.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/pyrr-0.10.3.dist-info/RECORD -------------------------------------------------------------------------------- /ExternalModules/pyrr-0.10.3.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.32.3) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /ExternalModules/pyrr-0.10.3.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | pyrr 2 | -------------------------------------------------------------------------------- /ExternalModules/pyrr/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/pyrr/__init__.py -------------------------------------------------------------------------------- /ExternalModules/pyrr/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/pyrr/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /ExternalModules/pyrr/__pycache__/aabb.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/pyrr/__pycache__/aabb.cpython-37.pyc -------------------------------------------------------------------------------- /ExternalModules/pyrr/__pycache__/aambb.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/pyrr/__pycache__/aambb.cpython-37.pyc -------------------------------------------------------------------------------- /ExternalModules/pyrr/__pycache__/euler.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/pyrr/__pycache__/euler.cpython-37.pyc -------------------------------------------------------------------------------- /ExternalModules/pyrr/__pycache__/geometric_tests.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/pyrr/__pycache__/geometric_tests.cpython-37.pyc -------------------------------------------------------------------------------- /ExternalModules/pyrr/__pycache__/geometry.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/pyrr/__pycache__/geometry.cpython-37.pyc -------------------------------------------------------------------------------- /ExternalModules/pyrr/__pycache__/integer.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/pyrr/__pycache__/integer.cpython-37.pyc -------------------------------------------------------------------------------- /ExternalModules/pyrr/__pycache__/line.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/pyrr/__pycache__/line.cpython-37.pyc -------------------------------------------------------------------------------- /ExternalModules/pyrr/__pycache__/matrix33.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/pyrr/__pycache__/matrix33.cpython-37.pyc -------------------------------------------------------------------------------- /ExternalModules/pyrr/__pycache__/matrix44.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/pyrr/__pycache__/matrix44.cpython-37.pyc -------------------------------------------------------------------------------- /ExternalModules/pyrr/__pycache__/plane.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/pyrr/__pycache__/plane.cpython-37.pyc -------------------------------------------------------------------------------- /ExternalModules/pyrr/__pycache__/quaternion.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/pyrr/__pycache__/quaternion.cpython-37.pyc -------------------------------------------------------------------------------- /ExternalModules/pyrr/__pycache__/ray.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/pyrr/__pycache__/ray.cpython-37.pyc -------------------------------------------------------------------------------- /ExternalModules/pyrr/__pycache__/rectangle.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/pyrr/__pycache__/rectangle.cpython-37.pyc -------------------------------------------------------------------------------- /ExternalModules/pyrr/__pycache__/sphere.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/pyrr/__pycache__/sphere.cpython-37.pyc -------------------------------------------------------------------------------- /ExternalModules/pyrr/__pycache__/trig.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/pyrr/__pycache__/trig.cpython-37.pyc -------------------------------------------------------------------------------- /ExternalModules/pyrr/__pycache__/utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/pyrr/__pycache__/utils.cpython-37.pyc -------------------------------------------------------------------------------- /ExternalModules/pyrr/__pycache__/vector.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/pyrr/__pycache__/vector.cpython-37.pyc -------------------------------------------------------------------------------- /ExternalModules/pyrr/__pycache__/vector3.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/pyrr/__pycache__/vector3.cpython-37.pyc -------------------------------------------------------------------------------- /ExternalModules/pyrr/__pycache__/vector4.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/pyrr/__pycache__/vector4.cpython-37.pyc -------------------------------------------------------------------------------- /ExternalModules/pyrr/__pycache__/version.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/pyrr/__pycache__/version.cpython-37.pyc -------------------------------------------------------------------------------- /ExternalModules/pyrr/aabb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/pyrr/aabb.py -------------------------------------------------------------------------------- /ExternalModules/pyrr/aambb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/pyrr/aambb.py -------------------------------------------------------------------------------- /ExternalModules/pyrr/euler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/pyrr/euler.py -------------------------------------------------------------------------------- /ExternalModules/pyrr/geometric_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/pyrr/geometric_tests.py -------------------------------------------------------------------------------- /ExternalModules/pyrr/geometry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/pyrr/geometry.py -------------------------------------------------------------------------------- /ExternalModules/pyrr/integer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/pyrr/integer.py -------------------------------------------------------------------------------- /ExternalModules/pyrr/line.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/pyrr/line.py -------------------------------------------------------------------------------- /ExternalModules/pyrr/matrix33.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/pyrr/matrix33.py -------------------------------------------------------------------------------- /ExternalModules/pyrr/matrix44.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/pyrr/matrix44.py -------------------------------------------------------------------------------- /ExternalModules/pyrr/objects/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/pyrr/objects/__init__.py -------------------------------------------------------------------------------- /ExternalModules/pyrr/objects/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/pyrr/objects/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /ExternalModules/pyrr/objects/__pycache__/base.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/pyrr/objects/__pycache__/base.cpython-37.pyc -------------------------------------------------------------------------------- /ExternalModules/pyrr/objects/__pycache__/matrix33.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/pyrr/objects/__pycache__/matrix33.cpython-37.pyc -------------------------------------------------------------------------------- /ExternalModules/pyrr/objects/__pycache__/matrix44.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/pyrr/objects/__pycache__/matrix44.cpython-37.pyc -------------------------------------------------------------------------------- /ExternalModules/pyrr/objects/__pycache__/quaternion.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/pyrr/objects/__pycache__/quaternion.cpython-37.pyc -------------------------------------------------------------------------------- /ExternalModules/pyrr/objects/__pycache__/vector3.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/pyrr/objects/__pycache__/vector3.cpython-37.pyc -------------------------------------------------------------------------------- /ExternalModules/pyrr/objects/__pycache__/vector4.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/pyrr/objects/__pycache__/vector4.cpython-37.pyc -------------------------------------------------------------------------------- /ExternalModules/pyrr/objects/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/pyrr/objects/base.py -------------------------------------------------------------------------------- /ExternalModules/pyrr/objects/matrix33.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/pyrr/objects/matrix33.py -------------------------------------------------------------------------------- /ExternalModules/pyrr/objects/matrix44.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/pyrr/objects/matrix44.py -------------------------------------------------------------------------------- /ExternalModules/pyrr/objects/quaternion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/pyrr/objects/quaternion.py -------------------------------------------------------------------------------- /ExternalModules/pyrr/objects/vector3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/pyrr/objects/vector3.py -------------------------------------------------------------------------------- /ExternalModules/pyrr/objects/vector4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/pyrr/objects/vector4.py -------------------------------------------------------------------------------- /ExternalModules/pyrr/plane.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/pyrr/plane.py -------------------------------------------------------------------------------- /ExternalModules/pyrr/quaternion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/pyrr/quaternion.py -------------------------------------------------------------------------------- /ExternalModules/pyrr/ray.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/pyrr/ray.py -------------------------------------------------------------------------------- /ExternalModules/pyrr/rectangle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/pyrr/rectangle.py -------------------------------------------------------------------------------- /ExternalModules/pyrr/sphere.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/pyrr/sphere.py -------------------------------------------------------------------------------- /ExternalModules/pyrr/trig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/pyrr/trig.py -------------------------------------------------------------------------------- /ExternalModules/pyrr/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/pyrr/utils.py -------------------------------------------------------------------------------- /ExternalModules/pyrr/vector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/pyrr/vector.py -------------------------------------------------------------------------------- /ExternalModules/pyrr/vector3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/pyrr/vector3.py -------------------------------------------------------------------------------- /ExternalModules/pyrr/vector4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/pyrr/vector4.py -------------------------------------------------------------------------------- /ExternalModules/pyrr/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/ExternalModules/pyrr/version.py -------------------------------------------------------------------------------- /Image_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/Image_loader.py -------------------------------------------------------------------------------- /KeyframeNudge_scripts/Grease/Grease_ComeOver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/KeyframeNudge_scripts/Grease/Grease_ComeOver.py -------------------------------------------------------------------------------- /KeyframeNudge_scripts/Grease/Grease_HoldFor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/KeyframeNudge_scripts/Grease/Grease_HoldFor.py -------------------------------------------------------------------------------- /KeyframeNudge_scripts/Grease/Grease_Nudge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/KeyframeNudge_scripts/Grease/Grease_Nudge.py -------------------------------------------------------------------------------- /KeyframeNudge_scripts/Grease/Grease_PushPull.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/KeyframeNudge_scripts/Grease/Grease_PushPull.py -------------------------------------------------------------------------------- /KeyframeNudge_scripts/Grease/Grease_SpreadTo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/KeyframeNudge_scripts/Grease/Grease_SpreadTo.py -------------------------------------------------------------------------------- /KeyframeNudge_scripts/Grease/Progress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/KeyframeNudge_scripts/Grease/Progress.py -------------------------------------------------------------------------------- /KeyframeNudge_scripts/Grease/__pycache__/Grease_ComeOver.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/KeyframeNudge_scripts/Grease/__pycache__/Grease_ComeOver.cpython-37.pyc -------------------------------------------------------------------------------- /KeyframeNudge_scripts/Grease/__pycache__/Grease_HoldFor.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/KeyframeNudge_scripts/Grease/__pycache__/Grease_HoldFor.cpython-37.pyc -------------------------------------------------------------------------------- /KeyframeNudge_scripts/Grease/__pycache__/Grease_Nudge.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/KeyframeNudge_scripts/Grease/__pycache__/Grease_Nudge.cpython-37.pyc -------------------------------------------------------------------------------- /KeyframeNudge_scripts/Grease/__pycache__/Grease_PushPull.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/KeyframeNudge_scripts/Grease/__pycache__/Grease_PushPull.cpython-37.pyc -------------------------------------------------------------------------------- /KeyframeNudge_scripts/Grease/__pycache__/Grease_SpreadTo.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/KeyframeNudge_scripts/Grease/__pycache__/Grease_SpreadTo.cpython-37.pyc -------------------------------------------------------------------------------- /KeyframeNudge_scripts/Keyframe/ComeOver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/KeyframeNudge_scripts/Keyframe/ComeOver.py -------------------------------------------------------------------------------- /KeyframeNudge_scripts/Keyframe/Hold_For.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/KeyframeNudge_scripts/Keyframe/Hold_For.py -------------------------------------------------------------------------------- /KeyframeNudge_scripts/Keyframe/Inbetween.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/KeyframeNudge_scripts/Keyframe/Inbetween.py -------------------------------------------------------------------------------- /KeyframeNudge_scripts/Keyframe/Inbetween_Test_scene.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/KeyframeNudge_scripts/Keyframe/Inbetween_Test_scene.blend -------------------------------------------------------------------------------- /KeyframeNudge_scripts/Keyframe/Inbetween_Test_scene.blend1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/KeyframeNudge_scripts/Keyframe/Inbetween_Test_scene.blend1 -------------------------------------------------------------------------------- /KeyframeNudge_scripts/Keyframe/Keyframe_Nudge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/KeyframeNudge_scripts/Keyframe/Keyframe_Nudge.py -------------------------------------------------------------------------------- /KeyframeNudge_scripts/Keyframe/Nudge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/KeyframeNudge_scripts/Keyframe/Nudge.py -------------------------------------------------------------------------------- /KeyframeNudge_scripts/Keyframe/Push_Pull.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/KeyframeNudge_scripts/Keyframe/Push_Pull.py -------------------------------------------------------------------------------- /KeyframeNudge_scripts/Keyframe/Tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/KeyframeNudge_scripts/Keyframe/Tools.py -------------------------------------------------------------------------------- /KeyframeNudge_scripts/Keyframe/__pycache__/ComeOver.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/KeyframeNudge_scripts/Keyframe/__pycache__/ComeOver.cpython-37.pyc -------------------------------------------------------------------------------- /KeyframeNudge_scripts/Keyframe/__pycache__/Hold_For.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/KeyframeNudge_scripts/Keyframe/__pycache__/Hold_For.cpython-37.pyc -------------------------------------------------------------------------------- /KeyframeNudge_scripts/Keyframe/__pycache__/Inbetween.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/KeyframeNudge_scripts/Keyframe/__pycache__/Inbetween.cpython-37.pyc -------------------------------------------------------------------------------- /KeyframeNudge_scripts/Keyframe/__pycache__/Keyframe_Nudge.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/KeyframeNudge_scripts/Keyframe/__pycache__/Keyframe_Nudge.cpython-37.pyc -------------------------------------------------------------------------------- /KeyframeNudge_scripts/Keyframe/__pycache__/Nudge.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/KeyframeNudge_scripts/Keyframe/__pycache__/Nudge.cpython-37.pyc -------------------------------------------------------------------------------- /KeyframeNudge_scripts/Keyframe/__pycache__/Push_Pull.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/KeyframeNudge_scripts/Keyframe/__pycache__/Push_Pull.cpython-37.pyc -------------------------------------------------------------------------------- /KeyframeNudge_scripts/Keyframe/__pycache__/Tools.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/KeyframeNudge_scripts/Keyframe/__pycache__/Tools.cpython-37.pyc -------------------------------------------------------------------------------- /Logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/Logger.py -------------------------------------------------------------------------------- /Logs/Shapes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/Logs/Shapes -------------------------------------------------------------------------------- /Logs/Widgets.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Logs/developer.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/Logs/developer.log -------------------------------------------------------------------------------- /Logs/test_Triangle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/Logs/test_Triangle -------------------------------------------------------------------------------- /Logs/test_Triangle.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/Logs/test_Triangle.log -------------------------------------------------------------------------------- /Main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/Main.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/README.md -------------------------------------------------------------------------------- /Shader_Loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/Shader_Loader.py -------------------------------------------------------------------------------- /UI/Fonts/Exo2.0-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/UI/Fonts/Exo2.0-Bold.otf -------------------------------------------------------------------------------- /UI/Fonts/Exo2.0-ExtraBold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/UI/Fonts/Exo2.0-ExtraBold.otf -------------------------------------------------------------------------------- /UI/Fonts/Exo2.0-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/UI/Fonts/Exo2.0-Light.otf -------------------------------------------------------------------------------- /UI/Fonts/Exo2.0-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/UI/Fonts/Exo2.0-Regular.otf -------------------------------------------------------------------------------- /UI/Fonts/bonn_bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/UI/Fonts/bonn_bold.ttf -------------------------------------------------------------------------------- /UI/Fonts/bonn_light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/UI/Fonts/bonn_light.ttf -------------------------------------------------------------------------------- /UI/Fonts/bonn_regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/UI/Fonts/bonn_regular.ttf -------------------------------------------------------------------------------- /UI/Panels/Keyframe_Nudge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/UI/Panels/Keyframe_Nudge.py -------------------------------------------------------------------------------- /UI/Panels/PathfinderTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/UI/Panels/PathfinderTest.py -------------------------------------------------------------------------------- /UI/Panels/__pycache__/Keyframe_Nudge.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/UI/Panels/__pycache__/Keyframe_Nudge.cpython-37.pyc -------------------------------------------------------------------------------- /UI/Shaders/Debug_frag.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/UI/Shaders/Debug_frag.glsl -------------------------------------------------------------------------------- /UI/Shaders/Shape_frag.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/UI/Shaders/Shape_frag.glsl -------------------------------------------------------------------------------- /UI/Shaders/Shape_vert.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/UI/Shaders/Shape_vert.glsl -------------------------------------------------------------------------------- /UI/Shaders/Slider_frag.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/UI/Shaders/Slider_frag.glsl -------------------------------------------------------------------------------- /UI/Shaders/flat_fragment.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/UI/Shaders/flat_fragment.glsl -------------------------------------------------------------------------------- /UI/Shaders/flat_tex_mask_frag.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/UI/Shaders/flat_tex_mask_frag.glsl -------------------------------------------------------------------------------- /UI/Shaders/flat_vertex.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/UI/Shaders/flat_vertex.glsl -------------------------------------------------------------------------------- /UI/Shaders/shader.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/UI/Shaders/shader.log -------------------------------------------------------------------------------- /UI/Shaders/spread_to_frag.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/UI/Shaders/spread_to_frag.glsl -------------------------------------------------------------------------------- /UI/Shaders/textures/NUDGE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/UI/Shaders/textures/NUDGE.png -------------------------------------------------------------------------------- /UI/Shaders/textures/NUDGE.png~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/UI/Shaders/textures/NUDGE.png~ -------------------------------------------------------------------------------- /UI/Shapes/Line.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/UI/Shapes/Line.py -------------------------------------------------------------------------------- /UI/Shapes/Rectangle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/UI/Shapes/Rectangle.py -------------------------------------------------------------------------------- /UI/Shapes/Test_Pathfinder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/UI/Shapes/Test_Pathfinder.py -------------------------------------------------------------------------------- /UI/Shapes/Text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/UI/Shapes/Text.py -------------------------------------------------------------------------------- /UI/Shapes/Triangle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/UI/Shapes/Triangle.py -------------------------------------------------------------------------------- /UI/Shapes/UVRectangle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/UI/Shapes/UVRectangle.py -------------------------------------------------------------------------------- /UI/Shapes/UVRectangle2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/UI/Shapes/UVRectangle2.py -------------------------------------------------------------------------------- /UI/Shapes/UVRectangleMasked.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/UI/Shapes/UVRectangleMasked.py -------------------------------------------------------------------------------- /UI/Shapes/UVRectangle_Debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/UI/Shapes/UVRectangle_Debug.py -------------------------------------------------------------------------------- /UI/Shapes/Unused_shapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/UI/Shapes/Unused_shapes.py -------------------------------------------------------------------------------- /UI/Shapes/__pycache__/Line.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/UI/Shapes/__pycache__/Line.cpython-37.pyc -------------------------------------------------------------------------------- /UI/Shapes/__pycache__/Rectangle.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/UI/Shapes/__pycache__/Rectangle.cpython-37.pyc -------------------------------------------------------------------------------- /UI/Shapes/__pycache__/Text.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/UI/Shapes/__pycache__/Text.cpython-37.pyc -------------------------------------------------------------------------------- /UI/Shapes/__pycache__/Triangle.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/UI/Shapes/__pycache__/Triangle.cpython-37.pyc -------------------------------------------------------------------------------- /UI/Shapes/__pycache__/UVRectangle.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/UI/Shapes/__pycache__/UVRectangle.cpython-37.pyc -------------------------------------------------------------------------------- /UI/Shapes/__pycache__/UVRectangle2.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/UI/Shapes/__pycache__/UVRectangle2.cpython-37.pyc -------------------------------------------------------------------------------- /UI/Shapes/__pycache__/UVRectangleMasked.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/UI/Shapes/__pycache__/UVRectangleMasked.cpython-37.pyc -------------------------------------------------------------------------------- /UI/Shapes/__pycache__/UVRectangle_Debug.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/UI/Shapes/__pycache__/UVRectangle_Debug.cpython-37.pyc -------------------------------------------------------------------------------- /UI/Shapes/__pycache__/Unused_shapes.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/UI/Shapes/__pycache__/Unused_shapes.cpython-37.pyc -------------------------------------------------------------------------------- /UI/Widgets/Pathfinder_test.py: -------------------------------------------------------------------------------- 1 | from ..Shapes import * 2 | 3 | -------------------------------------------------------------------------------- /UI/Widgets/RectangleButton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/UI/Widgets/RectangleButton.py -------------------------------------------------------------------------------- /UI/Widgets/RectangleButton2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/UI/Widgets/RectangleButton2.py -------------------------------------------------------------------------------- /UI/Widgets/Slider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/UI/Widgets/Slider.py -------------------------------------------------------------------------------- /UI/Widgets/StateButton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/UI/Widgets/StateButton.py -------------------------------------------------------------------------------- /UI/Widgets/StateButton02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/UI/Widgets/StateButton02.py -------------------------------------------------------------------------------- /UI/Widgets/TextField.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/UI/Widgets/TextField.py -------------------------------------------------------------------------------- /UI/Widgets/__pycache__/RectangleButton.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/UI/Widgets/__pycache__/RectangleButton.cpython-37.pyc -------------------------------------------------------------------------------- /UI/Widgets/__pycache__/RectangleButton2.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/UI/Widgets/__pycache__/RectangleButton2.cpython-37.pyc -------------------------------------------------------------------------------- /UI/Widgets/__pycache__/Slider.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/UI/Widgets/__pycache__/Slider.cpython-37.pyc -------------------------------------------------------------------------------- /UI/Widgets/__pycache__/StateButton.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/UI/Widgets/__pycache__/StateButton.cpython-37.pyc -------------------------------------------------------------------------------- /UI/Widgets/__pycache__/StateButton02.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/UI/Widgets/__pycache__/StateButton02.cpython-37.pyc -------------------------------------------------------------------------------- /UI/Widgets/__pycache__/TextField.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/UI/Widgets/__pycache__/TextField.cpython-37.pyc -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/__init__.py -------------------------------------------------------------------------------- /__pycache__/Image_loader.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/__pycache__/Image_loader.cpython-37.pyc -------------------------------------------------------------------------------- /__pycache__/Logger.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/__pycache__/Logger.cpython-37.pyc -------------------------------------------------------------------------------- /__pycache__/Main.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/__pycache__/Main.cpython-37.pyc -------------------------------------------------------------------------------- /__pycache__/Shader_Loader.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/__pycache__/Shader_Loader.cpython-37.pyc -------------------------------------------------------------------------------- /__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /__pycache__/get_data.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/__pycache__/get_data.cpython-37.pyc -------------------------------------------------------------------------------- /__pycache__/small_tools.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/__pycache__/small_tools.cpython-37.pyc -------------------------------------------------------------------------------- /__pycache__/testfield.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/__pycache__/testfield.cpython-37.pyc -------------------------------------------------------------------------------- /get_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/get_data.py -------------------------------------------------------------------------------- /imgs/ComeOver_Button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/imgs/ComeOver_Button.png -------------------------------------------------------------------------------- /imgs/Frames-Seconds_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/imgs/Frames-Seconds_button.png -------------------------------------------------------------------------------- /imgs/Hold_For-Button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/imgs/Hold_For-Button.png -------------------------------------------------------------------------------- /imgs/Inbetween_Slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/imgs/Inbetween_Slider.png -------------------------------------------------------------------------------- /imgs/Main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/imgs/Main.png -------------------------------------------------------------------------------- /imgs/Main.png~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/imgs/Main.png~ -------------------------------------------------------------------------------- /imgs/Panel_Mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/imgs/Panel_Mode.png -------------------------------------------------------------------------------- /imgs/Plus-Minus_buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/imgs/Plus-Minus_buttons.png -------------------------------------------------------------------------------- /imgs/Push-PullButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/imgs/Push-PullButton.png -------------------------------------------------------------------------------- /imgs/Translate_Panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/imgs/Translate_Panel.png -------------------------------------------------------------------------------- /imgs/Value_Input_Field.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/imgs/Value_Input_Field.png -------------------------------------------------------------------------------- /small_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okuma10/Keyframe-Nudge/HEAD/small_tools.py -------------------------------------------------------------------------------- /testfield.py: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------