lamdalili
lamdalili
yy
Missing units: GR32_BlendASM, GR32_BlendMMX, GR32_BlendSSE2, GR32_Gamma .. not only for Delphi 10.2 but also for other versions, I don't know if they are deprecated and will be removed in the...
Sometimes Grow produces an erroneous offset for concave angles except with jsRoundEx joinstyle that checks the new point before adding it miter error:  I changed the code of the...
I think adding new overload version for Transform to directly manipulate arrays is good idea this will save many precious calls to points handlers.
In some situations GR32_LowLevel.Clamp(Value, Max: Integer) gives wrong result when Max hold negative value ie Clamp(pos,A-B) Original code: ``` if Value > Max then Result := Max else if Value...
I had division by zero at this line in the sub function InCircle of DelaunayTriangulation ``` CenterX := (M1 * MX1 - M2 * Mx2 + My2 - MY1) /...
If VertexReduction called with closed path an infinite recursion will result in RamerDouglasPeucker I am not sure to understand the code but when I replace > with >= seems work...