an interactive 2D light simulator
https://zalavariandris.github.io/lighttrace2/
-
grab and move shapes by their actuals shapes instead of a manipulator
-
refactor scene.js classes to seperate files
-
set light intensity to compensate light samples per frame
-
select shapes (and deselect shapes when clicking on the background)
-
inspector panel.
-
display material in viewport
-
toolbar: create new shapes and lightsources from toolbar
-
delete selected objects
-
get rid of Point Manipulator
-
DirectionalLight width manipulator.
-
Circle shape radius manipulator
-
remove class Object like Point from constructors. Use Cx, Cy for example.
-
refactor constructors to accept {key value objects}
-
mousetools to create scene objects
-
rewrite mousetools to a single mouseDown function. to keep track dragStartPosition.
-
fix selection when when scene updates.
-
refactor SVGViewport to accept children components, to populate the scene
-
add ReferencePoint and referenceOffset ot ManipulatorEvent, to simplify grabbing objects
-
seperate model from viewmodel, by switching scene to PlainJavascriptObject
-
rewrite Shape modelViews to independent Editable SVG Element components.
-
support light source intensity (in model)
-
support light source intensity with svgViewport
-
support light source intensity (in GLviewport)
-
support light frequency (model)
-
support light frequency with SVGViewport
-
support light frequency (in GLViewport)
-
use RGB color instead of a single frequency or spectral distribution (for now)
-
spectral color support
-
show manipulators only when object is selected.
-
pull modell from App Component
-
factor out mouseTools
-
dispersion! (Sellmeier equation)
-
rectangle selection, middlemouse for pan
-
persistent display options
-
? refactor sceneObject to ECS entity
-
hitTest and raytrace on the GPU
-
add new drag handler to SVGViewport
-
refactor GLViewport, and lift the rendering code to a child "entity" component.
-
use redux for UI View models?
-
refactor UI to reusable widgets and ModelViews. Like SVGViewport and SVG Panel?
-
check if webgl extensions are supported by the platform. eg: float texturtres, and half float textures
-
simulate light as wave
-
rotate shapes
- leaks pointlight inside a circle (since rewrite) FIXED: compareHitPoint distances in raytrace.js
- fix transparent material refrection on exit
- fix concave lens ray intersections
- fix pan and zoom with omusetools
- cant select LaserLight
- rectangle corners leaking: fix linesegment corners hitTest
- cant use manipulators under shapes: fix svg layering and interaction
- Lens svg path is not conitonous (when selected its obvious)
- fix LineSegment surfaceNormal and Rectangle surface normals.
- fix selection when scene has changed -> unifiedScenemodel with selection
- fix (potential) memory leak on long simulations.
- stop refining(rendering) after a number of samples!
- concave lens inner corner does not refract properly
- when lens thickness is larger then the diameter, visuals are not in sync with the model. These lenses are not traditional lenses, so constrain the model itself. dont let thicknes to be wider then the lens diameter.