├── LICENSE.md ├── README.md ├── Stubble.sln ├── Stubble ├── Common │ ├── Base64.cpp │ ├── Base64.hpp │ ├── CatmullRomUtilities.hpp │ ├── CommonConstants.hpp │ ├── CommonFunctions.hpp │ ├── CommonTypes.hpp │ ├── GLExtensions.cpp │ ├── GLExtensions.hpp │ ├── StubbleException.hpp │ └── StubbleTimer.hpp ├── HairShape │ ├── Generators │ │ ├── RandomGenerator.cpp │ │ ├── RandomGenerator.hpp │ │ ├── UVPointGenerator.cpp │ │ └── UVPointGenerator.hpp │ ├── HairComponents │ │ ├── DisplayedGuides.cpp │ │ ├── DisplayedGuides.hpp │ │ ├── GuidePosition.hpp │ │ ├── HairGuides.cpp │ │ ├── HairGuides.hpp │ │ ├── RestPositionsDS.cpp │ │ ├── RestPositionsDS.hpp │ │ ├── Segments.hpp │ │ ├── SegmentsDS.cpp │ │ ├── SegmentsDS.hpp │ │ ├── SegmentsStorage.cpp │ │ ├── SegmentsStorage.hpp │ │ ├── SelectedGuides.hpp │ │ ├── UndoStack.cpp │ │ ├── UndoStack.hpp │ │ └── kdtmpl.h │ ├── Interpolation │ │ ├── HairGenerator.hpp │ │ ├── HairGenerator.tmpl.hpp │ │ ├── HairProperties.cpp │ │ ├── HairProperties.hpp │ │ ├── InterpolationGroups.cpp │ │ ├── InterpolationGroups.hpp │ │ ├── Maya │ │ │ ├── InterpolatedHair.hpp │ │ │ ├── MayaHairProperties.cpp │ │ │ ├── MayaHairProperties.hpp │ │ │ ├── MayaOutputGenerator.cpp │ │ │ ├── MayaOutputGenerator.hpp │ │ │ ├── MayaPositionGenerator.cpp │ │ │ ├── MayaPositionGenerator.hpp │ │ │ ├── SimpleOutputGenerator.hpp │ │ │ ├── SimplePositionGenerator.hpp │ │ │ ├── Voxelization.cpp │ │ │ └── Voxelization.hpp │ │ ├── OutputGenerator.hpp │ │ ├── PositionGenerator.hpp │ │ ├── RenderMan │ │ │ ├── RMHairProperties.cpp │ │ │ ├── RMHairProperties.hpp │ │ │ ├── RMOutputGenerator.cpp │ │ │ ├── RMOutputGenerator.hpp │ │ │ ├── RMPositionGenerator.cpp │ │ │ └── RMPositionGenerator.hpp │ │ └── mentalray │ │ │ ├── mrOutputGenerator.cpp │ │ │ └── mrOutputGenerator.hpp │ ├── Mesh │ │ ├── MayaMesh.cpp │ │ ├── MayaMesh.hpp │ │ ├── MayaTriangle.hpp │ │ ├── Mesh.cpp │ │ ├── Mesh.hpp │ │ ├── MeshPoint.hpp │ │ ├── MeshUVCoordUG.cpp │ │ ├── MeshUVCoordUG.hpp │ │ ├── Triangle.hpp │ │ ├── TriangleConstIterator.hpp │ │ └── UVPoint.hpp │ ├── Texture │ │ ├── Texture.cpp │ │ └── Texture.hpp │ └── UserInterface │ │ ├── CommandsNURBS.cpp │ │ ├── CommandsNURBS.hpp │ │ ├── CommandsTextures.cpp │ │ ├── CommandsTextures.hpp │ │ ├── HairShape.cpp │ │ ├── HairShape.hpp │ │ ├── HairShapeUI.cpp │ │ ├── HairShapeUI.hpp │ │ ├── HistoryCommands.cpp │ │ ├── HistoryCommands.hpp │ │ ├── PrepareForMentalRayCommand.cpp │ │ ├── PrepareForMentalRayCommand.hpp │ │ ├── ReinitCommand.cpp │ │ ├── ReinitCommand.hpp │ │ ├── ResetCommand.cpp │ │ ├── ResetCommand.hpp │ │ ├── SelectCommand.cpp │ │ ├── SelectCommand.hpp │ │ ├── SwitchSelectionModeCommand.cpp │ │ └── SwitchSelectionModeCommand.hpp ├── Icons │ ├── stubble_arrow_redo.png │ ├── stubble_arrow_undo.png │ ├── stubble_guides_selection.png │ ├── stubble_hair_brush.png │ ├── stubble_haptic.png │ ├── stubble_roots_selection.png │ ├── stubble_scissors.png │ ├── stubble_tips_selection.png │ └── stubble_vertices_selection.png ├── MEL │ ├── AEHairShapeTemplate.mel │ ├── Stubble3DelightRendering.mel │ ├── StubbleBrushTool.mel │ ├── StubbleBrushToolProperties.mel │ ├── StubbleBrushToolValues.mel │ ├── StubbleCreateHair.mel │ ├── StubbleCreateUI.mel │ ├── StubbleCutTool.mel │ ├── StubbleCutToolProperties.mel │ ├── StubbleCutToolValues.mel │ ├── StubbleDeleteUI.mel │ ├── StubbleHapticSettingsTool.mel │ ├── StubbleHapticSettingsToolProperties.mel │ ├── StubbleHapticSettingsToolValues.mel │ ├── StubbleHotkeys.mel │ ├── StubbleRebuildSelectMenu.mel │ └── StubbleTextureProperties.mel ├── Primitives │ ├── BoundingBox.hpp │ ├── Matrix.hpp │ └── Vector3D.hpp ├── RibExport │ ├── CachedFrame.cpp │ ├── CachedFrame.hpp │ ├── RenderManCacheCommand.cpp │ └── RenderManCacheCommand.hpp ├── Stubble.vcxproj ├── Stubble.vcxproj.filters ├── Toolbox │ ├── BrushModes │ │ ├── BrushMode.hpp │ │ ├── ClumpBrushMode │ │ │ ├── ClumpBrushMode.cpp │ │ │ └── ClumpBrushMode.hpp │ │ ├── PuffEndBrushMode │ │ │ ├── PuffEndBrushMode.cpp │ │ │ └── PuffEndBrushMode.hpp │ │ ├── PuffRootBrushMode │ │ │ ├── PuffRootBrushMode.cpp │ │ │ └── PuffRootBrushMode.hpp │ │ ├── RotateBrushMode │ │ │ ├── RotateBrushMode.cpp │ │ │ └── RotateBrushMode.hpp │ │ ├── ScaleBrushMode │ │ │ ├── ScaleBrushMode.cpp │ │ │ └── ScaleBrushMode.hpp │ │ └── TranslateBrushMode │ │ │ ├── TranslateBrushMode.cpp │ │ │ └── TranslateBrushMode.hpp │ ├── HairTask.hpp │ ├── HairTaskProcessor.cpp │ ├── HairTaskProcessor.hpp │ ├── ToolShapes │ │ ├── CircleToolShape │ │ │ ├── CircleToolShape.cpp │ │ │ └── CircleToolShape.hpp │ │ ├── CylinderToolShape │ │ │ ├── CylinderToolShape.cpp │ │ │ └── CylinderToolShape.hpp │ │ ├── SphereToolShape │ │ │ ├── SphereToolShape.cpp │ │ │ └── SphereToolShape.hpp │ │ ├── TextureToolShape │ │ │ ├── TextureToolShape.cpp │ │ │ └── TextureToolShape.hpp │ │ └── ToolShape.hpp │ └── Tools │ │ ├── BrushTool │ │ ├── BrushTool.cpp │ │ └── BrushTool.hpp │ │ ├── CutTool │ │ ├── CutTool.cpp │ │ └── CutTool.hpp │ │ ├── GenericTool.cpp │ │ ├── GenericTool.hpp │ │ ├── HapticListener.cpp │ │ ├── HapticListener.hpp │ │ ├── HapticSettingsTool.cpp │ │ ├── HapticSettingsTool.hpp │ │ ├── MouseMoveListener.cpp │ │ ├── MouseMoveListener.hpp │ │ ├── TabletSettingsTool.cpp │ │ └── TabletSettingsTool.hpp ├── installMELscripts.bat └── pluginMain.cpp └── StubbleHairGenerator ├── StubbleHairGenerator.mi ├── StubbleHairGenerator.vcxproj ├── StubbleHairGenerator.vcxproj.filters └── dllEntryPoint.cpp /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/README.md -------------------------------------------------------------------------------- /Stubble.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble.sln -------------------------------------------------------------------------------- /Stubble/Common/Base64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/Common/Base64.cpp -------------------------------------------------------------------------------- /Stubble/Common/Base64.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/Common/Base64.hpp -------------------------------------------------------------------------------- /Stubble/Common/CatmullRomUtilities.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/Common/CatmullRomUtilities.hpp -------------------------------------------------------------------------------- /Stubble/Common/CommonConstants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/Common/CommonConstants.hpp -------------------------------------------------------------------------------- /Stubble/Common/CommonFunctions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/Common/CommonFunctions.hpp -------------------------------------------------------------------------------- /Stubble/Common/CommonTypes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/Common/CommonTypes.hpp -------------------------------------------------------------------------------- /Stubble/Common/GLExtensions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/Common/GLExtensions.cpp -------------------------------------------------------------------------------- /Stubble/Common/GLExtensions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/Common/GLExtensions.hpp -------------------------------------------------------------------------------- /Stubble/Common/StubbleException.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/Common/StubbleException.hpp -------------------------------------------------------------------------------- /Stubble/Common/StubbleTimer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/Common/StubbleTimer.hpp -------------------------------------------------------------------------------- /Stubble/HairShape/Generators/RandomGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/HairShape/Generators/RandomGenerator.cpp -------------------------------------------------------------------------------- /Stubble/HairShape/Generators/RandomGenerator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/HairShape/Generators/RandomGenerator.hpp -------------------------------------------------------------------------------- /Stubble/HairShape/Generators/UVPointGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/HairShape/Generators/UVPointGenerator.cpp -------------------------------------------------------------------------------- /Stubble/HairShape/Generators/UVPointGenerator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/HairShape/Generators/UVPointGenerator.hpp -------------------------------------------------------------------------------- /Stubble/HairShape/HairComponents/DisplayedGuides.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/HairShape/HairComponents/DisplayedGuides.cpp -------------------------------------------------------------------------------- /Stubble/HairShape/HairComponents/DisplayedGuides.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/HairShape/HairComponents/DisplayedGuides.hpp -------------------------------------------------------------------------------- /Stubble/HairShape/HairComponents/GuidePosition.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/HairShape/HairComponents/GuidePosition.hpp -------------------------------------------------------------------------------- /Stubble/HairShape/HairComponents/HairGuides.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/HairShape/HairComponents/HairGuides.cpp -------------------------------------------------------------------------------- /Stubble/HairShape/HairComponents/HairGuides.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/HairShape/HairComponents/HairGuides.hpp -------------------------------------------------------------------------------- /Stubble/HairShape/HairComponents/RestPositionsDS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/HairShape/HairComponents/RestPositionsDS.cpp -------------------------------------------------------------------------------- /Stubble/HairShape/HairComponents/RestPositionsDS.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/HairShape/HairComponents/RestPositionsDS.hpp -------------------------------------------------------------------------------- /Stubble/HairShape/HairComponents/Segments.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/HairShape/HairComponents/Segments.hpp -------------------------------------------------------------------------------- /Stubble/HairShape/HairComponents/SegmentsDS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/HairShape/HairComponents/SegmentsDS.cpp -------------------------------------------------------------------------------- /Stubble/HairShape/HairComponents/SegmentsDS.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/HairShape/HairComponents/SegmentsDS.hpp -------------------------------------------------------------------------------- /Stubble/HairShape/HairComponents/SegmentsStorage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/HairShape/HairComponents/SegmentsStorage.cpp -------------------------------------------------------------------------------- /Stubble/HairShape/HairComponents/SegmentsStorage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/HairShape/HairComponents/SegmentsStorage.hpp -------------------------------------------------------------------------------- /Stubble/HairShape/HairComponents/SelectedGuides.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/HairShape/HairComponents/SelectedGuides.hpp -------------------------------------------------------------------------------- /Stubble/HairShape/HairComponents/UndoStack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/HairShape/HairComponents/UndoStack.cpp -------------------------------------------------------------------------------- /Stubble/HairShape/HairComponents/UndoStack.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/HairShape/HairComponents/UndoStack.hpp -------------------------------------------------------------------------------- /Stubble/HairShape/HairComponents/kdtmpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/HairShape/HairComponents/kdtmpl.h -------------------------------------------------------------------------------- /Stubble/HairShape/Interpolation/HairGenerator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/HairShape/Interpolation/HairGenerator.hpp -------------------------------------------------------------------------------- /Stubble/HairShape/Interpolation/HairGenerator.tmpl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/HairShape/Interpolation/HairGenerator.tmpl.hpp -------------------------------------------------------------------------------- /Stubble/HairShape/Interpolation/HairProperties.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/HairShape/Interpolation/HairProperties.cpp -------------------------------------------------------------------------------- /Stubble/HairShape/Interpolation/HairProperties.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/HairShape/Interpolation/HairProperties.hpp -------------------------------------------------------------------------------- /Stubble/HairShape/Interpolation/InterpolationGroups.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/HairShape/Interpolation/InterpolationGroups.cpp -------------------------------------------------------------------------------- /Stubble/HairShape/Interpolation/InterpolationGroups.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/HairShape/Interpolation/InterpolationGroups.hpp -------------------------------------------------------------------------------- /Stubble/HairShape/Interpolation/Maya/InterpolatedHair.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/HairShape/Interpolation/Maya/InterpolatedHair.hpp -------------------------------------------------------------------------------- /Stubble/HairShape/Interpolation/Maya/MayaHairProperties.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/HairShape/Interpolation/Maya/MayaHairProperties.cpp -------------------------------------------------------------------------------- /Stubble/HairShape/Interpolation/Maya/MayaHairProperties.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/HairShape/Interpolation/Maya/MayaHairProperties.hpp -------------------------------------------------------------------------------- /Stubble/HairShape/Interpolation/Maya/MayaOutputGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/HairShape/Interpolation/Maya/MayaOutputGenerator.cpp -------------------------------------------------------------------------------- /Stubble/HairShape/Interpolation/Maya/MayaOutputGenerator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/HairShape/Interpolation/Maya/MayaOutputGenerator.hpp -------------------------------------------------------------------------------- /Stubble/HairShape/Interpolation/Maya/MayaPositionGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/HairShape/Interpolation/Maya/MayaPositionGenerator.cpp -------------------------------------------------------------------------------- /Stubble/HairShape/Interpolation/Maya/MayaPositionGenerator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/HairShape/Interpolation/Maya/MayaPositionGenerator.hpp -------------------------------------------------------------------------------- /Stubble/HairShape/Interpolation/Maya/SimpleOutputGenerator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/HairShape/Interpolation/Maya/SimpleOutputGenerator.hpp -------------------------------------------------------------------------------- /Stubble/HairShape/Interpolation/Maya/SimplePositionGenerator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/HairShape/Interpolation/Maya/SimplePositionGenerator.hpp -------------------------------------------------------------------------------- /Stubble/HairShape/Interpolation/Maya/Voxelization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/HairShape/Interpolation/Maya/Voxelization.cpp -------------------------------------------------------------------------------- /Stubble/HairShape/Interpolation/Maya/Voxelization.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/HairShape/Interpolation/Maya/Voxelization.hpp -------------------------------------------------------------------------------- /Stubble/HairShape/Interpolation/OutputGenerator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/HairShape/Interpolation/OutputGenerator.hpp -------------------------------------------------------------------------------- /Stubble/HairShape/Interpolation/PositionGenerator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/HairShape/Interpolation/PositionGenerator.hpp -------------------------------------------------------------------------------- /Stubble/HairShape/Interpolation/RenderMan/RMHairProperties.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/HairShape/Interpolation/RenderMan/RMHairProperties.cpp -------------------------------------------------------------------------------- /Stubble/HairShape/Interpolation/RenderMan/RMHairProperties.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/HairShape/Interpolation/RenderMan/RMHairProperties.hpp -------------------------------------------------------------------------------- /Stubble/HairShape/Interpolation/RenderMan/RMOutputGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/HairShape/Interpolation/RenderMan/RMOutputGenerator.cpp -------------------------------------------------------------------------------- /Stubble/HairShape/Interpolation/RenderMan/RMOutputGenerator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/HairShape/Interpolation/RenderMan/RMOutputGenerator.hpp -------------------------------------------------------------------------------- /Stubble/HairShape/Interpolation/RenderMan/RMPositionGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/HairShape/Interpolation/RenderMan/RMPositionGenerator.cpp -------------------------------------------------------------------------------- /Stubble/HairShape/Interpolation/RenderMan/RMPositionGenerator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/HairShape/Interpolation/RenderMan/RMPositionGenerator.hpp -------------------------------------------------------------------------------- /Stubble/HairShape/Interpolation/mentalray/mrOutputGenerator.cpp: -------------------------------------------------------------------------------- 1 | #include "mrOutputGenerator.hpp" 2 | -------------------------------------------------------------------------------- /Stubble/HairShape/Interpolation/mentalray/mrOutputGenerator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/HairShape/Interpolation/mentalray/mrOutputGenerator.hpp -------------------------------------------------------------------------------- /Stubble/HairShape/Mesh/MayaMesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/HairShape/Mesh/MayaMesh.cpp -------------------------------------------------------------------------------- /Stubble/HairShape/Mesh/MayaMesh.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/HairShape/Mesh/MayaMesh.hpp -------------------------------------------------------------------------------- /Stubble/HairShape/Mesh/MayaTriangle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/HairShape/Mesh/MayaTriangle.hpp -------------------------------------------------------------------------------- /Stubble/HairShape/Mesh/Mesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/HairShape/Mesh/Mesh.cpp -------------------------------------------------------------------------------- /Stubble/HairShape/Mesh/Mesh.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/HairShape/Mesh/Mesh.hpp -------------------------------------------------------------------------------- /Stubble/HairShape/Mesh/MeshPoint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/HairShape/Mesh/MeshPoint.hpp -------------------------------------------------------------------------------- /Stubble/HairShape/Mesh/MeshUVCoordUG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/HairShape/Mesh/MeshUVCoordUG.cpp -------------------------------------------------------------------------------- /Stubble/HairShape/Mesh/MeshUVCoordUG.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/HairShape/Mesh/MeshUVCoordUG.hpp -------------------------------------------------------------------------------- /Stubble/HairShape/Mesh/Triangle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/HairShape/Mesh/Triangle.hpp -------------------------------------------------------------------------------- /Stubble/HairShape/Mesh/TriangleConstIterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/HairShape/Mesh/TriangleConstIterator.hpp -------------------------------------------------------------------------------- /Stubble/HairShape/Mesh/UVPoint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/HairShape/Mesh/UVPoint.hpp -------------------------------------------------------------------------------- /Stubble/HairShape/Texture/Texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/HairShape/Texture/Texture.cpp -------------------------------------------------------------------------------- /Stubble/HairShape/Texture/Texture.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/HairShape/Texture/Texture.hpp -------------------------------------------------------------------------------- /Stubble/HairShape/UserInterface/CommandsNURBS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/HairShape/UserInterface/CommandsNURBS.cpp -------------------------------------------------------------------------------- /Stubble/HairShape/UserInterface/CommandsNURBS.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/HairShape/UserInterface/CommandsNURBS.hpp -------------------------------------------------------------------------------- /Stubble/HairShape/UserInterface/CommandsTextures.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/HairShape/UserInterface/CommandsTextures.cpp -------------------------------------------------------------------------------- /Stubble/HairShape/UserInterface/CommandsTextures.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/HairShape/UserInterface/CommandsTextures.hpp -------------------------------------------------------------------------------- /Stubble/HairShape/UserInterface/HairShape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/HairShape/UserInterface/HairShape.cpp -------------------------------------------------------------------------------- /Stubble/HairShape/UserInterface/HairShape.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/HairShape/UserInterface/HairShape.hpp -------------------------------------------------------------------------------- /Stubble/HairShape/UserInterface/HairShapeUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/HairShape/UserInterface/HairShapeUI.cpp -------------------------------------------------------------------------------- /Stubble/HairShape/UserInterface/HairShapeUI.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/HairShape/UserInterface/HairShapeUI.hpp -------------------------------------------------------------------------------- /Stubble/HairShape/UserInterface/HistoryCommands.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/HairShape/UserInterface/HistoryCommands.cpp -------------------------------------------------------------------------------- /Stubble/HairShape/UserInterface/HistoryCommands.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/HairShape/UserInterface/HistoryCommands.hpp -------------------------------------------------------------------------------- /Stubble/HairShape/UserInterface/PrepareForMentalRayCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/HairShape/UserInterface/PrepareForMentalRayCommand.cpp -------------------------------------------------------------------------------- /Stubble/HairShape/UserInterface/PrepareForMentalRayCommand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/HairShape/UserInterface/PrepareForMentalRayCommand.hpp -------------------------------------------------------------------------------- /Stubble/HairShape/UserInterface/ReinitCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/HairShape/UserInterface/ReinitCommand.cpp -------------------------------------------------------------------------------- /Stubble/HairShape/UserInterface/ReinitCommand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/HairShape/UserInterface/ReinitCommand.hpp -------------------------------------------------------------------------------- /Stubble/HairShape/UserInterface/ResetCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/HairShape/UserInterface/ResetCommand.cpp -------------------------------------------------------------------------------- /Stubble/HairShape/UserInterface/ResetCommand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/HairShape/UserInterface/ResetCommand.hpp -------------------------------------------------------------------------------- /Stubble/HairShape/UserInterface/SelectCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/HairShape/UserInterface/SelectCommand.cpp -------------------------------------------------------------------------------- /Stubble/HairShape/UserInterface/SelectCommand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/HairShape/UserInterface/SelectCommand.hpp -------------------------------------------------------------------------------- /Stubble/HairShape/UserInterface/SwitchSelectionModeCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/HairShape/UserInterface/SwitchSelectionModeCommand.cpp -------------------------------------------------------------------------------- /Stubble/HairShape/UserInterface/SwitchSelectionModeCommand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/HairShape/UserInterface/SwitchSelectionModeCommand.hpp -------------------------------------------------------------------------------- /Stubble/Icons/stubble_arrow_redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/Icons/stubble_arrow_redo.png -------------------------------------------------------------------------------- /Stubble/Icons/stubble_arrow_undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/Icons/stubble_arrow_undo.png -------------------------------------------------------------------------------- /Stubble/Icons/stubble_guides_selection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/Icons/stubble_guides_selection.png -------------------------------------------------------------------------------- /Stubble/Icons/stubble_hair_brush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/Icons/stubble_hair_brush.png -------------------------------------------------------------------------------- /Stubble/Icons/stubble_haptic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/Icons/stubble_haptic.png -------------------------------------------------------------------------------- /Stubble/Icons/stubble_roots_selection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/Icons/stubble_roots_selection.png -------------------------------------------------------------------------------- /Stubble/Icons/stubble_scissors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/Icons/stubble_scissors.png -------------------------------------------------------------------------------- /Stubble/Icons/stubble_tips_selection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/Icons/stubble_tips_selection.png -------------------------------------------------------------------------------- /Stubble/Icons/stubble_vertices_selection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/Icons/stubble_vertices_selection.png -------------------------------------------------------------------------------- /Stubble/MEL/AEHairShapeTemplate.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/MEL/AEHairShapeTemplate.mel -------------------------------------------------------------------------------- /Stubble/MEL/Stubble3DelightRendering.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/MEL/Stubble3DelightRendering.mel -------------------------------------------------------------------------------- /Stubble/MEL/StubbleBrushTool.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/MEL/StubbleBrushTool.mel -------------------------------------------------------------------------------- /Stubble/MEL/StubbleBrushToolProperties.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/MEL/StubbleBrushToolProperties.mel -------------------------------------------------------------------------------- /Stubble/MEL/StubbleBrushToolValues.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/MEL/StubbleBrushToolValues.mel -------------------------------------------------------------------------------- /Stubble/MEL/StubbleCreateHair.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/MEL/StubbleCreateHair.mel -------------------------------------------------------------------------------- /Stubble/MEL/StubbleCreateUI.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/MEL/StubbleCreateUI.mel -------------------------------------------------------------------------------- /Stubble/MEL/StubbleCutTool.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/MEL/StubbleCutTool.mel -------------------------------------------------------------------------------- /Stubble/MEL/StubbleCutToolProperties.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/MEL/StubbleCutToolProperties.mel -------------------------------------------------------------------------------- /Stubble/MEL/StubbleCutToolValues.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/MEL/StubbleCutToolValues.mel -------------------------------------------------------------------------------- /Stubble/MEL/StubbleDeleteUI.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/MEL/StubbleDeleteUI.mel -------------------------------------------------------------------------------- /Stubble/MEL/StubbleHapticSettingsTool.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/MEL/StubbleHapticSettingsTool.mel -------------------------------------------------------------------------------- /Stubble/MEL/StubbleHapticSettingsToolProperties.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/MEL/StubbleHapticSettingsToolProperties.mel -------------------------------------------------------------------------------- /Stubble/MEL/StubbleHapticSettingsToolValues.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/MEL/StubbleHapticSettingsToolValues.mel -------------------------------------------------------------------------------- /Stubble/MEL/StubbleHotkeys.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/MEL/StubbleHotkeys.mel -------------------------------------------------------------------------------- /Stubble/MEL/StubbleRebuildSelectMenu.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/MEL/StubbleRebuildSelectMenu.mel -------------------------------------------------------------------------------- /Stubble/MEL/StubbleTextureProperties.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/MEL/StubbleTextureProperties.mel -------------------------------------------------------------------------------- /Stubble/Primitives/BoundingBox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/Primitives/BoundingBox.hpp -------------------------------------------------------------------------------- /Stubble/Primitives/Matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/Primitives/Matrix.hpp -------------------------------------------------------------------------------- /Stubble/Primitives/Vector3D.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/Primitives/Vector3D.hpp -------------------------------------------------------------------------------- /Stubble/RibExport/CachedFrame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/RibExport/CachedFrame.cpp -------------------------------------------------------------------------------- /Stubble/RibExport/CachedFrame.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/RibExport/CachedFrame.hpp -------------------------------------------------------------------------------- /Stubble/RibExport/RenderManCacheCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/RibExport/RenderManCacheCommand.cpp -------------------------------------------------------------------------------- /Stubble/RibExport/RenderManCacheCommand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/RibExport/RenderManCacheCommand.hpp -------------------------------------------------------------------------------- /Stubble/Stubble.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/Stubble.vcxproj -------------------------------------------------------------------------------- /Stubble/Stubble.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/Stubble.vcxproj.filters -------------------------------------------------------------------------------- /Stubble/Toolbox/BrushModes/BrushMode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/Toolbox/BrushModes/BrushMode.hpp -------------------------------------------------------------------------------- /Stubble/Toolbox/BrushModes/ClumpBrushMode/ClumpBrushMode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/Toolbox/BrushModes/ClumpBrushMode/ClumpBrushMode.cpp -------------------------------------------------------------------------------- /Stubble/Toolbox/BrushModes/ClumpBrushMode/ClumpBrushMode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/Toolbox/BrushModes/ClumpBrushMode/ClumpBrushMode.hpp -------------------------------------------------------------------------------- /Stubble/Toolbox/BrushModes/PuffEndBrushMode/PuffEndBrushMode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/Toolbox/BrushModes/PuffEndBrushMode/PuffEndBrushMode.cpp -------------------------------------------------------------------------------- /Stubble/Toolbox/BrushModes/PuffEndBrushMode/PuffEndBrushMode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/Toolbox/BrushModes/PuffEndBrushMode/PuffEndBrushMode.hpp -------------------------------------------------------------------------------- /Stubble/Toolbox/BrushModes/PuffRootBrushMode/PuffRootBrushMode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/Toolbox/BrushModes/PuffRootBrushMode/PuffRootBrushMode.cpp -------------------------------------------------------------------------------- /Stubble/Toolbox/BrushModes/PuffRootBrushMode/PuffRootBrushMode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/Toolbox/BrushModes/PuffRootBrushMode/PuffRootBrushMode.hpp -------------------------------------------------------------------------------- /Stubble/Toolbox/BrushModes/RotateBrushMode/RotateBrushMode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/Toolbox/BrushModes/RotateBrushMode/RotateBrushMode.cpp -------------------------------------------------------------------------------- /Stubble/Toolbox/BrushModes/RotateBrushMode/RotateBrushMode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/Toolbox/BrushModes/RotateBrushMode/RotateBrushMode.hpp -------------------------------------------------------------------------------- /Stubble/Toolbox/BrushModes/ScaleBrushMode/ScaleBrushMode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/Toolbox/BrushModes/ScaleBrushMode/ScaleBrushMode.cpp -------------------------------------------------------------------------------- /Stubble/Toolbox/BrushModes/ScaleBrushMode/ScaleBrushMode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/Toolbox/BrushModes/ScaleBrushMode/ScaleBrushMode.hpp -------------------------------------------------------------------------------- /Stubble/Toolbox/BrushModes/TranslateBrushMode/TranslateBrushMode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/Toolbox/BrushModes/TranslateBrushMode/TranslateBrushMode.cpp -------------------------------------------------------------------------------- /Stubble/Toolbox/BrushModes/TranslateBrushMode/TranslateBrushMode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/Toolbox/BrushModes/TranslateBrushMode/TranslateBrushMode.hpp -------------------------------------------------------------------------------- /Stubble/Toolbox/HairTask.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/Toolbox/HairTask.hpp -------------------------------------------------------------------------------- /Stubble/Toolbox/HairTaskProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/Toolbox/HairTaskProcessor.cpp -------------------------------------------------------------------------------- /Stubble/Toolbox/HairTaskProcessor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/Toolbox/HairTaskProcessor.hpp -------------------------------------------------------------------------------- /Stubble/Toolbox/ToolShapes/CircleToolShape/CircleToolShape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/Toolbox/ToolShapes/CircleToolShape/CircleToolShape.cpp -------------------------------------------------------------------------------- /Stubble/Toolbox/ToolShapes/CircleToolShape/CircleToolShape.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/Toolbox/ToolShapes/CircleToolShape/CircleToolShape.hpp -------------------------------------------------------------------------------- /Stubble/Toolbox/ToolShapes/CylinderToolShape/CylinderToolShape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/Toolbox/ToolShapes/CylinderToolShape/CylinderToolShape.cpp -------------------------------------------------------------------------------- /Stubble/Toolbox/ToolShapes/CylinderToolShape/CylinderToolShape.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/Toolbox/ToolShapes/CylinderToolShape/CylinderToolShape.hpp -------------------------------------------------------------------------------- /Stubble/Toolbox/ToolShapes/SphereToolShape/SphereToolShape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/Toolbox/ToolShapes/SphereToolShape/SphereToolShape.cpp -------------------------------------------------------------------------------- /Stubble/Toolbox/ToolShapes/SphereToolShape/SphereToolShape.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/Toolbox/ToolShapes/SphereToolShape/SphereToolShape.hpp -------------------------------------------------------------------------------- /Stubble/Toolbox/ToolShapes/TextureToolShape/TextureToolShape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/Toolbox/ToolShapes/TextureToolShape/TextureToolShape.cpp -------------------------------------------------------------------------------- /Stubble/Toolbox/ToolShapes/TextureToolShape/TextureToolShape.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/Toolbox/ToolShapes/TextureToolShape/TextureToolShape.hpp -------------------------------------------------------------------------------- /Stubble/Toolbox/ToolShapes/ToolShape.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/Toolbox/ToolShapes/ToolShape.hpp -------------------------------------------------------------------------------- /Stubble/Toolbox/Tools/BrushTool/BrushTool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/Toolbox/Tools/BrushTool/BrushTool.cpp -------------------------------------------------------------------------------- /Stubble/Toolbox/Tools/BrushTool/BrushTool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/Toolbox/Tools/BrushTool/BrushTool.hpp -------------------------------------------------------------------------------- /Stubble/Toolbox/Tools/CutTool/CutTool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/Toolbox/Tools/CutTool/CutTool.cpp -------------------------------------------------------------------------------- /Stubble/Toolbox/Tools/CutTool/CutTool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/Toolbox/Tools/CutTool/CutTool.hpp -------------------------------------------------------------------------------- /Stubble/Toolbox/Tools/GenericTool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/Toolbox/Tools/GenericTool.cpp -------------------------------------------------------------------------------- /Stubble/Toolbox/Tools/GenericTool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/Toolbox/Tools/GenericTool.hpp -------------------------------------------------------------------------------- /Stubble/Toolbox/Tools/HapticListener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/Toolbox/Tools/HapticListener.cpp -------------------------------------------------------------------------------- /Stubble/Toolbox/Tools/HapticListener.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/Toolbox/Tools/HapticListener.hpp -------------------------------------------------------------------------------- /Stubble/Toolbox/Tools/HapticSettingsTool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/Toolbox/Tools/HapticSettingsTool.cpp -------------------------------------------------------------------------------- /Stubble/Toolbox/Tools/HapticSettingsTool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/Toolbox/Tools/HapticSettingsTool.hpp -------------------------------------------------------------------------------- /Stubble/Toolbox/Tools/MouseMoveListener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/Toolbox/Tools/MouseMoveListener.cpp -------------------------------------------------------------------------------- /Stubble/Toolbox/Tools/MouseMoveListener.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/Toolbox/Tools/MouseMoveListener.hpp -------------------------------------------------------------------------------- /Stubble/Toolbox/Tools/TabletSettingsTool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/Toolbox/Tools/TabletSettingsTool.cpp -------------------------------------------------------------------------------- /Stubble/Toolbox/Tools/TabletSettingsTool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/Toolbox/Tools/TabletSettingsTool.hpp -------------------------------------------------------------------------------- /Stubble/installMELscripts.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/installMELscripts.bat -------------------------------------------------------------------------------- /Stubble/pluginMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/Stubble/pluginMain.cpp -------------------------------------------------------------------------------- /StubbleHairGenerator/StubbleHairGenerator.mi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/StubbleHairGenerator/StubbleHairGenerator.mi -------------------------------------------------------------------------------- /StubbleHairGenerator/StubbleHairGenerator.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/StubbleHairGenerator/StubbleHairGenerator.vcxproj -------------------------------------------------------------------------------- /StubbleHairGenerator/StubbleHairGenerator.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/StubbleHairGenerator/StubbleHairGenerator.vcxproj.filters -------------------------------------------------------------------------------- /StubbleHairGenerator/dllEntryPoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrkadlecek/Stubble/HEAD/StubbleHairGenerator/dllEntryPoint.cpp --------------------------------------------------------------------------------