├── README.md ├── hxDynaLight.hxproj └── src ├── Main.hx └── com └── pdev ├── lighting ├── DirectionalLight.hx ├── Light.hx ├── LightEngine.hx ├── PointInt.hx ├── display │ └── BitmapGraphics.hx └── occlusion │ ├── ILightOccluder.hx │ ├── ShadowCircle.hx │ └── ShadowSegment.hx └── tools └── LightTool.hx /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PDeveloper/hxDynaLight/HEAD/README.md -------------------------------------------------------------------------------- /hxDynaLight.hxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PDeveloper/hxDynaLight/HEAD/hxDynaLight.hxproj -------------------------------------------------------------------------------- /src/Main.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PDeveloper/hxDynaLight/HEAD/src/Main.hx -------------------------------------------------------------------------------- /src/com/pdev/lighting/DirectionalLight.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PDeveloper/hxDynaLight/HEAD/src/com/pdev/lighting/DirectionalLight.hx -------------------------------------------------------------------------------- /src/com/pdev/lighting/Light.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PDeveloper/hxDynaLight/HEAD/src/com/pdev/lighting/Light.hx -------------------------------------------------------------------------------- /src/com/pdev/lighting/LightEngine.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PDeveloper/hxDynaLight/HEAD/src/com/pdev/lighting/LightEngine.hx -------------------------------------------------------------------------------- /src/com/pdev/lighting/PointInt.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PDeveloper/hxDynaLight/HEAD/src/com/pdev/lighting/PointInt.hx -------------------------------------------------------------------------------- /src/com/pdev/lighting/display/BitmapGraphics.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PDeveloper/hxDynaLight/HEAD/src/com/pdev/lighting/display/BitmapGraphics.hx -------------------------------------------------------------------------------- /src/com/pdev/lighting/occlusion/ILightOccluder.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PDeveloper/hxDynaLight/HEAD/src/com/pdev/lighting/occlusion/ILightOccluder.hx -------------------------------------------------------------------------------- /src/com/pdev/lighting/occlusion/ShadowCircle.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PDeveloper/hxDynaLight/HEAD/src/com/pdev/lighting/occlusion/ShadowCircle.hx -------------------------------------------------------------------------------- /src/com/pdev/lighting/occlusion/ShadowSegment.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PDeveloper/hxDynaLight/HEAD/src/com/pdev/lighting/occlusion/ShadowSegment.hx -------------------------------------------------------------------------------- /src/com/pdev/tools/LightTool.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PDeveloper/hxDynaLight/HEAD/src/com/pdev/tools/LightTool.hx --------------------------------------------------------------------------------