aboutsummaryrefslogtreecommitdiffstats
path: root/src/jogl/classes/jogamp/graph/curve
Commit message (Expand)AuthorAgeFilesLines
* Graph: Cleanup Loop & OutlineShape, more compact methodsSven Göthel2024-02-151-93/+62
* VectorUtil: Bring back specialized testSeg2segIntersection() w/ build-in Floa...Sven Göthel2024-02-141-4/+4
* Bug 1501: Refine convex == !complex: Use 'complex' term, have env-property to...Sven Göthel2024-02-142-20/+12
* VectorUtil: Generalize *seg2segIntersection* w/ epsilon and doCollinearSven Göthel2024-02-141-8/+8
* VectorUtil: Remove double InCircleDThreshold = DoubleUtil.EPSILONSven Göthel2024-02-141-1/+3
* Bug 1501: Graph CDTriangulator2D: Add properties to enforce convex and non-co...Sven Göthel2024-02-141-2/+10
* Bug 1501: Apply intersection tests for non-convex shapes to reject new CCW a...Sven Göthel2024-02-132-103/+246
* Bug 1501: Graph RenderState add debug-bits, i.e. DEBUG_LINESTRIP used in VBOR...Sven Göthel2024-02-131-1/+2
* Graph RenderState/RegionRenderer: Rename isHintMaskSet()->hintBitsSet(), setH...Sven Göthel2024-02-133-7/+8
* Loop.isValidNeighborDbg(): Remove DEBUG branch, always trueSven Göthel2024-02-121-8/+4
* Bug 1501: Graph Delaunay: Use default winding outer-boundary:=CCW and inner-h...Sven Göthel2024-02-122-25/+22
* Bug 1501: Graph Delaunay: Add double triAreaVec2() and isInCircleVec2() versi...Sven Göthel2024-02-123-88/+132
* Remove Clonable and clone() in favor of explicit determined copy() and copy-c...Sven Göthel2024-02-022-11/+11
* Bug 805: Graph/GraphUI TextureSequence Scale: Move Region.COLORTEXTURE_LETTER...Sven Göthel2024-02-016-7/+49
* Graph shader (pass1 simple): USE_COLOR_TEXTURE: Clip to vec4(0) color using a...Sven Göthel2024-01-311-4/+4
* VBORegionSPES2: Disable verbose flag in TextureSequence.setTexCoordBBox() .. ...Sven Göthel2024-01-221-1/+1
* Graph Clipping: Use Frustum Clipping using AABBox -> Mv transformed Cube -> F...Sven Göthel2024-01-2015-103/+121
* Graph/GraphUI AA-Quality + SampleCount (shader): Push params down to RegionRe...Sven Göthel2024-01-163-49/+47
* Bump (c) -2024 for edited files + LICENSE.txtSven Göthel2024-01-145-5/+5
* Graph/GraphUI: Revise Graph Region ShaderMapping, fix AABBox-Clipping for Pas...Sven Göthel2024-01-1410-220/+250
* Graph VBORegion2PVBAAES2: Fix Rescale (MAX texSize): renderFboHeight shall us...Sven Göthel2024-01-121-1/+1
* Graph Clipping: Add missing Modelview-Matrix (Mv) Multiplication / ConsiderationSven Göthel2024-01-092-2/+2
* Graph Clipping: Initial Region impl of AABBox clipping using GLSL shader (Con...Sven Göthel2024-01-093-21/+72
* Graph Clipping: GLSL: Add `USE_AABBOX_CLIPPING`, i.e. clipping via AABBox min...Sven Göthel2024-01-098-19/+50
* Graph GLSL functions.glsl: Complete overload vec2 and vec3 variants; Fix 'and...Sven Göthel2024-01-091-8/+52
* Graph Shader: Fix 'curverenderer01-single.vp' aligning w/ 'curverenderer01-pa...Sven Gothel2023-12-181-2/+3
* TextureSequence.setTexCoordBBox(): Add 'verbose' parameter for debug output i...Sven Gothel2023-10-033-3/+3
* Bug 1465 - Graph / GraphUI: Render a Region's ColorTexture in proper aspect-r...Sven Gothel2023-09-309-72/+80
* Bug 1452 - Decouple math functionality to 'com.jogamp.math' to be toolkit agn...Sven Gothel2023-09-206-21/+21
* Debug.debugExplicit(): Define and use explicit symbol debug flag; Use it for ...Sven Gothel2023-09-163-5/+15
* Graph Loop: Make initFromPolyline() and locateClosestVertex() more robust, re...Sven Gothel2023-08-283-11/+33
* Graph Add {GLRegion, GraphShape}.setTextureUnit(int): Allowing to set texture...Sven Gothel2023-08-013-0/+15
* Graph CDTriangulator2D: Drop invalid innerPoly, avoiding Loop.initFromPolylin...Sven Gothel2023-05-051-2/+30
* Graph GLRegion*: Utilize interleaved GLSL buffers for vertices, curveParams a...Sven Gothel2023-04-203-104/+14
* Graph VBORegion2P*.renderVBO(): Add comment on BITHINT_GLOBAL_DEPTH_TEST_ENAB...Sven Gothel2023-04-192-0/+9
* Graph GLRegion: Consolidate pass-1 common data (indices, vertices, ..) and al...Sven Gothel2023-04-193-462/+2
* Graph + GraphUI: Consolidate Vertex: Drop SVertex and factory, use Vec[234]f ...Sven Gothel2023-04-187-100/+111
* Matrix4f.mapWin*(): Drop unused temp matrices, map*() returns false on invPMv...Sven Gothel2023-04-092-6/+2
* VBORegion2P*ES2: Just instantiate SyncMatrices4f16 in place, drop local refSven Gothel2023-04-072-5/+2
* PMVMatrix rewrite using Matrix4f, providing SyncMatrix4f* for GLUniformData; ...Sven Gothel2023-04-072-38/+33
* Graph Shader: Complete the USE_DISCARD logic avoiding output set after discar...Sven Gothel2023-03-3012-36/+67
* Graph GLSL: Enable 'discard' in fragment shader w/o GLRendererQuirks.GLSLBugg...Sven Gothel2023-03-3013-50/+53
* Graph: GLRegion: Pass curRenderModes to updateImpl() + drawImpl(), prepare sw...Sven Gothel2023-03-193-65/+100
* Fix ShaderProgram ownership bug, introduced in commit 67a723477ecd818fbc5859f...Sven Gothel2023-03-153-35/+9
* Graph: Have RegionRenderer.reshapeNotify(..) track x/y as well (vieport); Gra...Sven Gothel2023-03-141-3/+6
* GLRegion + RegionRenderer: Add clearShader(..) to delete all ShaderPrograms a...Sven Gothel2023-03-133-5/+32
* Graph Perf: Region*: Add setBufferCapacity(..) and cut-off growBuffer() early...Sven Gothel2023-03-073-123/+203
* Graph Perf: Region: split addOutlineShape() -> addOutlineShape0() (fast) and ...Sven Gothel2023-03-073-3/+3
* Graph Perf: Region*: Rely on growBuffer(..) per addOutlineShape() and known b...Sven Gothel2023-03-073-50/+62
* Graph: Region: Add perf counter (w/ API); Utilize put[34][sif](..); Fix indic...Sven Gothel2023-03-063-85/+169