-
-
Notifications
You must be signed in to change notification settings - Fork 313
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Rework line shaders for WGLMakie compatability #3558
Conversation
Compile Times benchmarkNote, that these numbers may fluctuate on the CI servers, so take them with a grain of salt. All benchmark results are based on the mean time and negative percent mean faster than the base branch. Note, that GLMakie + WGLMakie run on an emulated GPU, so the runtime benchmark is much slower. Results are from running: using_time = @ctime using Backend
# Compile time
create_time = @ctime fig = scatter(1:4; color=1:4, colormap=:turbo, markersize=20, visible=true)
display_time = @ctime Makie.colorbuffer(display(fig))
# Runtime
create_time = @benchmark fig = scatter(1:4; color=1:4, colormap=:turbo, markersize=20, visible=true)
display_time = @benchmark Makie.colorbuffer(fig)
|
On master (GLMakie) truncated joints (i.e. joints that connect two segments with a flat cap rather than extruding them into a spike) generate some overlapping geometry which you can see in with transparent lines: This is probably not something I can fix here. Cutting off the segments to cleanly join them can cause the entire segment to be cut off which looks bad if the next segment doesn't fill the full space: The other option is to not cut, which leaves overlap (I can fix the corners here, but most of the overlap will remain): It might be possible to do some in-between solution that does a clean cut for as long as it works out, and then adds overlap beyond that. |
I think this is a float precision issues coming from the vertices of different segments being different. Self-overlap never happens for pointy joints, and early for truncated joints. Currently these overlap edges are not anti-aliased, but I could try to fix that. Patterns/linestyles snap to/around joints to avoid them getting fragmented: |
Found another issue where lines sometimes give up on drawing segments when they go in the (exact?) opposite direction or the previous/next MWE: (move camera) scatterlines([s * x * Vec2f(1, 1) for x in 1:3 for s in (-1, 1)]) The problem was that if a line reverses, i.e. v1 = -v2, then the same is true for the normals and thus |
* run CI against this PR * bump version * fix circular reference * remove GeoInterfaceMakie tests for good to avoid circular dependencies * add poly1 * Rework line shaders for WGLMakie compatability (#3558) * prototyping * fix joint with non-uniform linewidths * fix transform * add patterns * fix pattern sampling * fix truncated join cutoff + some cleanup * improve pattern overwrite threshhold * reorganize code * cleanup * add function for line vec -> line normal * don't try to cleanup joints if linewidth difference is critical * rename some variables * cleanup comments, restructure linewidth sdf generation * minor cleanup + notes * fix orientation problems with truncated joints * minor performance tweaks + cleanup * handle line joints in fragment shader & ditch variable linewidths * improve truncation overlap/gap * improve pattern adjustments for truncated joints * cleanup * reorganize code to reduce memory usage * mostly fix gap in sharp joints * explain pattern overwrite a bit more * use new fragment shader for linesegments * disable debug rendering * fix incorrect line placement * adjust line segments to pattern * use const over define & fix dots * tweak debug rendering * make truncation overlap a bit nicer * minor cleanup * fix linestyle in linesegments * skip rendering at 0 linewidth * add slight bias to avoid missing pixels * differentiate different segments in debug render * make color interpolation continuous at joint * fix dense line color artifacts * remove unused * allocate space for joints * use sdf for AA + debug render * add miter joints * handle colors * some cleanup + linesegments prep * fix some errors [skip ci] * add patterns * clean up linesegments * add normal rendering mode * minor cleanup * experiment with geometry adjustments * use rounding to solve joint over/underdraw * WebGL doesn't like scaling * smooth out inner edge of truncated join * remove derivative to reduce float accuracy issues * improve thin lines * fix lastlen error * match buffer sizes to number of drawn segments * avoid dissipation of lines at high point densities * calculate uv from quad_sdf1 * reduce number of interleaved buffers * fix disappearing grid lines * fix missing preprocessors * fix pattern artifacts in dense line sections * cleanup some variables * allow patterns to adjust to linewidth * fix AA at line end * fix nan handling * discard fully transparent pixels * fix patterns with nan, reset pattern on nan * fix size issues * extrude lines slightly to cleanly close them * fix pixel skipping? * cleanup patterns * remove linewidth from pattern based line adjustments * consider AA in shape factor * reset shape_factor if pattern changes segment shape * minor cleanup * apply changes to WGLMakie + cleanup * cleanup pattern overwrite * use the same AA_RADIUS in fragment shader * fix linelen transform * disable debug * fix line start/end AA * fix px_per_unit? * fix px_per_unit? * reduce line start/end extrusion * simplify extrusion and shape_factor * summarize breaking changes * move miter joint test * update docstring * minor cleanup * enable more tests * move gappy & friends to Makie * note change to linestyle scaling * cleanup * fix line start/end AA * remove global var * disable GeoMakie tests for now * improve transparency for WGLMakie * fix problems with 180° change in line direction * fix directionality * interpolate colormap in fragment shader * remove util.vert from line/segments --------- Co-authored-by: SimonDanisch <sdanisch@protonmail.com> * fix line inversion (#3651) * fix lines shader * cleanup debug code * fix rebase error * fix pattern connectivity * some cleanup * apply changes to WGLMakie * add test * fix CairoMakie too * update changelog * fix missing start/end segment * Update CHANGELOG.md * update comments --------- Co-authored-by: Simon <sdanisch@protonmail.com> * Documented / validated plot attributes (#3626) * add second `@recipe` method * rename function * implement recipe and keyword validation * fix some bugs * rename for clarity * change Scatter recipe * use argument symbols correctly * change Lines * change linesegments * do a bunch of plots more * fix text bugs * splice in internal attribute after mesh creation * add allowlist * fix text * add attribute deprecation mechanism * add explanation * remove `text` for GLMakie * fix contour volume attributes * add rasterize to allowlist * add `enable_depth` to volume * add `matcap` to mesh * set `fxaa = false` on scatter, lines, linesegments, text * move fxaa after mixins * fix keywords * remove markersize attribute * remove invalid markersize * add depthsorting to attributes for scatter * fix forwarded attributes * add absorption to volume * don't use `used_attributes` for datashader canvas convert * fix positional args * image * add better printing and rudimentary tests * make allowlist a tuple for fewer allocations * attribute names tuple instead of set * make deprecations also a tuple * avoid intermediate vector to speed up attribute creation * apply same optimization to blocks * implement mechanism to augment user docstring * delete manually written out attribute docs * use funcsym in docstring * incorporate attribute docs into docstring again * use equal * add changelog * introduce `DocumentedAttributes` with macro * add function to access `DocumentedAttributes` of a recipe * fix module mutation problem for now * move definition behind PlotType * return Attributes instead of Dict * convert wireframe recipe * close over reference * don't include prereleases in benchmark, failed with 1.11 alpha * stringify default expr * convert arrows * add docs * directly convert default exprs to strings * convert ablines * print wrong attribute in red * convert annotations * convert arc * remove attributes in arrows docstring * convert band * fix escaping issue * convert barplot * convert bracket * fix barplot usage in hist * convert contourf * typo * convert contour * fix waterfall * comment out arrows test * convert datashader * convert errorbar and rangebar * convert hvlines * convert hvspan * convert pie * convert rainclouds * convert scatterlines * convert series * convert spy * convert stairs * convert stem * convert streamplot * convert timeseries * convert tooltip * convert tricontourf * add transformation to allowlist * convert triplot * convert volumeslices * convert voronoiplot * convert waterfall * convert boxplot * convert crossbar * convert density * convert qqplot and qqnorm * convert ecdfplot * convert hexbin * convert hist * convert violin * improve error message printing * add docstrings for mutating functions and plot types * add missing docstrings * reconnect lines docstring * move functions out of macro * fix arrows example and adjust docs * put necessary functions back into macro --------- Co-authored-by: Simon <sdanisch@protonmail.com> * Add voxel plot type (#3527) * create voxel rendering prototype * enable lighting * prototype voxel id generation & color handling * add is_air attribute * prototype texture mapping * fix shader reloading * fix texture mapping * implement local updates * optimize render order (depthsorting = false) * add depthsorting = true * render z planes first * add lowclip and highclip * add refimg tests + some fixes * fix colorrange * fix local chunk update * handle colorrange more efficiently * handle voxel id data more efficiently * docstring & formatting * switch back to lrbt order for uvmap * add docs * try fix tests * fix show * fix test? * add missing dimensions * add arguments for placement and scale * allow Colon * add Colon() to local_update * minor cleanup * prototype WGLMakie version * add fallback in CairoMakie * add RPRMakie fallback * skip invisible voxels * fix typo * rename voxel -> voxels * update docs, fix placement * update news * fix Colorbar for voxels * enable tests * fix texture rotation * cleanup print * cleanup comment * generalize array access * debug WGLMakie * get voxels rendering in WGLMakie * fix texture mapping * activate tests * fix moving planes, cleanup prints * add unit tests * add gap attribute * tests & docs * mention potential issues with picking * fix WGLMakie picking * fix depthsorting/gap handling * switch to integer mod * fix render order * use RNG * fix 1.6 3d array syntax * fix refimage * Update CHANGELOG.md * fix julia 1.6 --------- Co-authored-by: Simon <sdanisch@protonmail.com> * implement Float32 without losing Float64 precision (rebased) (#3681) * implement float64 precision * remove merge conflicts * update CairoMakie * move some code around * simplify syntax * add non-Observable apply_transform_and_f32_conversion * clean up convert_arguments * update WGLMakie * fix tests * patch model to act after f32convert * fix function name * update project and plot_to_screen * fix patch_model * add first test * rename file * fix type after patch_model * fix ticks beyond limits * fix image and heatmap conversion * convert to float types * update test * Fix CairoMakie not precompiling missed a `Makie.` in the image recipe * update mesh converts * fix poly convert type * fix dict access * fix first test in WGLMakie * don't use triangle_mesh * fix incorrect convert_arguments * fix test * fix DataInspector error * add meshscatter + surface to tests, fix convert_arguments for poly * Fix docs + Makie tests * Fix 1.6!? * fix picking test * update DataInspector * fix indicator rotation for meshscatter in DataInspector * fix Vector{<: Integer}, Vector{Float32} -> Vector{Float32} [skip ci] * fix stackoverflow on mixed tuple types [skip ci] * fix tuples correctly [skip ci] * fix geom -> points eltype [skip ci] * fix geom -> PointBased output type * fix Rect2 -> points output type [skip ci] * fix PointBased mesh conversion * fix PointBased multi-linestrings type [skip ci] * update bezierpath * split up conversions * fix missing Points convert [skip ci] * fix CellGridBased types [skip ci] * always convert volumes to float32 * start adding type tests for every convert_arguments * fix tests * undo splitting conversions.jl * test and cleanup mesh conversions * fix docs * update & test Annotations * update & test arrows * update and test band and bracket * update & test errorbars and rangebars conversions * test & update series converts * make type stable on 1.6 * update & test remaining convert_arguments * fix & test model application * add tests for float32convert * at floatmin/max refimg test * fix typo * update text bbox test & add backtrace * avoid Float32 in data_limits * fix Polygon -> Bezierpath conversion * fix WGLMakie meshscatter model patching * fix Float64 normals * fix Float64 matrices in Voxels * test normal and uv types * fix for 1.6 * make new project method more complete * clean up some TODOs * restore text tests * restore Polar transform tests * avoid BBox for Axis limits * fix rectangle zoom, deprecate to_world with matrix inputs * fix 1.6 * fix Float64 latexstrings * fix hvlines, hvspan, errorbars, rangebars * fix & test ablines * fix other usage of projview_to_2d_limits * remove dublicated line * update changelog + cleanup [skip ci] * fix missing to_value * consider markersize and offset for scatter data_limits * fix tests * revert BBox -> Rect2d changes * get hist and barplot working --------- Co-authored-by: ffreyer <frederic481994@hotmail.de> Co-authored-by: Anshul Singhvi <anshulsinghvi@gmail.com> * Document conversion pipeline (#3719) * document conversion pipeline * fix doc build * fix block --------- Co-authored-by: SimonDanisch <sdanisch@protonmail.com> * Deprecate `rotations` for `rotation` for Scatter and MeshScatter (#3724) * deprecate `rotations` for `rotation` for Scatter and MeshScatter * one more rename * remove double conversion * fix cairomakie meshscatter * fix usage in docs * remove mat4 code again * fix CairoMakie rror * change one more rotations * fix WGLMakie * add changelog entry --------- Co-authored-by: ffreyer <frederic481994@hotmail.de> * fix merge * update scatter boundingbox (#3716) * implement scatter boundingbox with marker metrics * add tests * always consider marker rotations * update changelog [skip ci] * fix data_limits * fix some more issues * rotations -> rotation * Update boundingboxes.jl --------- Co-authored-by: Simon <sdanisch@protonmail.com> * Change how boundingbox(::Text) is deprecated (#3723) * change how boundingbox is deprecated * update changelog * fix test errors * fix docs errors and cleanup error message * fix type instability * fix function name * fix function name * fix boundingbox overwrites * update changelog * add types to function args maybe this allows boundingbox(::MyPlot, space) to work without ::Symbol... * fix typing * fully remove :world space * fix test * Various fixes for next release (#3731) * fix error for 2d meshscatter data_limits * avoid Rect3(::Rect2) constructor * allow :inspector_label * allow inspector_clear and inspector_hover too * fix rect zoom & cleanup to_world * move inspector attributes to default attributes * fix NaN handling in limits & deprecate _update_rect * Update CHANGELOG.md * Fix some issues with voxels (#3748) * fix single color * update to new attribute docs and hide internal attributes * fix missing voxel planes in Axis3 * use transformationmatrix * should be normalized * make view_direction optimization less error prone * Fix rare missing/duplicate pixels in truncated joint (#3794) * rework truncated joint discard * update WGLMakie * fix non-solid linestyle joints * Add linecaps and jointstyles (#3771) * add attributes * prototype linecap & linestyle in GLMakie * move code around, add comments * add capstyle for linesegments * update WGLMakie * revert change in padding of uncapped lines * make sure truncation can't trigger * update CairoMakie * add :bevel * make miter_limit adjustable * capstyle -> linecap * update changelog * add refimg tests * add example * fix rendering issue with bevel for continued lines * use named constants * add more space to test * consider miter_limit in CairoMakie as well * also enable refimg test * switch to angle based miter_limit * fix default * tweak tests * note change in default miter_limit * add new attributes to recipes * rename jointstyle -> joinstyle * update a few more jointstyles * Fix rare missing/duplicate pixels in truncated joint (#3794) * rework truncated joint discard * update WGLMakie * fix non-solid linestyle joints * improve truncated linecap a bit * regenerate wglmakie bundled * tweak shape_factor * restore file * try fix connected sphere * add debug refimgs * more testing * more testing * revert debugging * fix test? * Cleanup for breaking 0.21 (#3765) * cleanup temp defitions * finalize data_limits cleanup * GeometryBasics should probably be breaking * adjust other versions * use newly tagged GeometryBasics * use breaking gridlayoutbase * try updating registry * somehow this is needed?! * add to missing CI --------- Co-authored-by: SimonDanisch <sdanisch@protonmail.com> * Unit support for Axes & Recipes, a.k.a axis converts (#3226) * take over most of the work from #1347 * add typed argument conversion (#3565) * add typed argument conversion * fix volume * add function to get available conversions * make conversion apply more narrowly * more cleanly separate recursion in convert_arguments * clean up * allow to get axis before creating a plot * clean up * fix tests * bring back dim converts (axis_convert) * update tests * fix tests and work around conversion problems * fix WGLMakie * fix errors * clean up conversion pipeline * fix tests * add changelog entry * disable project run * improve performance slightly * might as well use array * tmp * wip * implement axis convert recursion * fix tests * fix datashader * fix datashader * move unitful integration * fix performance regression!? * fix merge & new date time improvements * fix scaling test * remove test false * clean up * converts shouldnt be here * move axis converts to scene * further refactor [skip ci] * finish refactor for AxisConversion type * allow limit setting and ticks * make tests less noisy * cleanup * clean up and fix unitful/date conversion * make sure all tests work correctly * remove rand * rename, clean up and make axis spec work * clean up and test new conversion pipeline * undo feature deletion, don't reintroduce Rect2f * be explicit about Volume Interval types * minor docstring cleanup * try to clarify new conversion docstrings * remove convert_arguments_typed in favor of types_for_plot_arguments * fix remaining bugs for conversion simplification * fix ticks not updating * fix specapi * fix qqnorm * clean up types_for_plot_arguments * fix tuple conversion * try to fix compile time regression * try to fix compile time regression * clean up and introduce expand_dimensions * fix #3655 and clean up convert_arguments + add tests * fix #3509 and add tests for * clean up observables and more docs * final rename * fix docs * cleanup * small clean up * small doc improvements * improve docs * fix docs * try relative link * try without .md * take out link * try fix --------- Co-authored-by: ffreyer <frederic481994@hotmail.de> * fix comment * Add wrap recipe tutorial (#3816) * [Docs] add wrap/redirect recipe tutorial * fix sentence * Update docs/tutorials/wrap-existing-recipe.md Co-authored-by: Anshul Singhvi <anshulsinghvi@gmail.com> * update * fix doc build * add changelog * fix preview --------- Co-authored-by: Moelf <proton@jling.dev> Co-authored-by: Anshul Singhvi <anshulsinghvi@gmail.com> * only forward attributes usable by recipe * make sharing of attributes explicit * ci * fix RPRMakie material * small fixes * fix RPRMakie * fix series with BezierPath * fix series conversions --------- Co-authored-by: Frederic Freyer <frederic481994@hotmail.de> Co-authored-by: Julius Krumbiegel <22495855+jkrumbiegel@users.noreply.github.com> Co-authored-by: Anshul Singhvi <anshulsinghvi@gmail.com> Co-authored-by: Moelf <proton@jling.dev>
Description
The last (GLMakie) line rework (#2666 + some fixes) modified the generated geometry to cleanly join lines. This resulted in a pretty complex geometry shader that is hard to translate to WGLMakie. With this pr I want to try a different approach - generating a simple (enlarged) rect and cutting it into shape with multiple signed distance fields. This should then be portable to WGLMakie.
Goals:
Approach
Basic line segment
Let's start with the simple base case for a (connected) line segment. Using the 4 points from the previous, current and next line segment, we can calculate 3 line vectors ($v_0, v_1, v_2$ ) and normals ($n_0, n_1, n_2$ ). Using these we can calculate miter vectors $miter.{v_i} = normalize(v_{i-1} + v_i)$ and normals $miter.n_i = normalize(n_{i-1} + n_i)$ . With those and the linewidth we can calculate the corner points of the segment as
c_i = p_i +- 0.5 * linewidth / dot(n1, miter_n_i) * miter_n_i
. (Or0.5 * linewidth + AA_THICKNESS
to add padding for anti-aliasing.)Truncated joints
Miter joints have some problems. One is that he more the line bends (i.e.$\langle v_{i-1}, v_i \rangle \to -1$ ), the further out the corner goes ($1.0 / \langle n_1, miter.n_i \rangle \to \infty$ ). To avoid this we want to truncate the joint, i.e. make a cut parallel to the
miter_v_i
direction.Doing this by adjusting the geometry is rather complicated. We need one extra vertex per joint to add the flat end of the joint, i.e. the truncated part (green). The vertex that overlaps the other line segment needs to move to avoid the line drawing over each other (green). If we also consider padding for AA we will need to push these vertices further outside to guarantee we always have enough space to do AA in the orange section.
We take a different approach here and do the joint using signed distance fields (SDF). Let's assume the joint applies to p2, with the current line segment being the left one. First we adjust the geometry to include the full joint with AA padding by extruding the line past p2 in v1 direction. Additionally we keep track of a bunch of variables:
sign(dot(miter_n2, v1)) * miter_n2
directionTo cap the line we add an anti-aliasing border when the truncation distance reaches a certain linewidth dependent value (cutoff marked in green). The two other distances tell us how close a pixel is to each line segment. Based on that we can discard pixels belonging to the other line (discarded marker in blue for the left line segment). To avoid cutting off a large section of our line (e.g. the other end) we can stop discarding once the distance inside our line reaches some threshold (darker/less intense color). We can also add an anti-aliasing border just after we stop discarding to do this smoothly.
Linestyles/Patterns
To draw a patterned line we need to know how far from the start of the line we are. For this each lien point needs to know how far it is from the start of the line and each fragment drawn needs to know how far it is from p1, in line direction v1. The latter is given by the distances used for truncated joints, and the former needs to be calculated on the CPU beforehand. With perspective projection this requires a full transformation to pixel space.
The difficulty with patterns lies in handling joints. If we just sample the distance from p1 at an extruded corner we will get different values between incoming and outgoing line segment. This would fragment the pattern. To avoid this we sample the pattern at (start, center, end) of the joint and make the following adjustments: (with - being drawn and + not)
Colors
Colors don't interpolate cleanly when being passed per vertex. Consider for example this line alternating between blue and red: (Note the first segment being dominantly red and the broken purple section in the second)
Instead of defaulting to vertex interpolation on a triangle like this, we interpolate between the colors of each point manually in the fragment shader. For this we reuse the distance from p1 used for truncated joints alongside the line start offset and length (which vary along the normal direction due to joints).
Short Segments
Short line segments can cause some issues which we need to deal with. The first issue is with miter joints, which can partially invert in this case:
To avoid this we scale the distance points 2 and 4 are from p1 and p2 by a common factor, such that they fall on top of each other. This effectively reduces the line quad to a triangle, which is the only part of the line that is not overlapping the previous and next segment. This generally works well, but makes a random clusters of line points a bit more chaotic.
There is another problem with short segments and the pattern adjustments above. For long-enough segments we can can check pattern values at
max(0.5 * linewidth, dot(extrusion, +-v1))
which would allow dots to never be bend around a joint. If segments are short though, this will result in artifacting.Old Explanation
To explain how lines are drawn in this pr I will first explain the case of solid lines. For reference we will use this debug image:
1. Generating Geometry
To start we generate a rectangle large enough to draw a line segment for every pair of consecutive points. There are 4 rectangles in the reference, each with a darker outline and some colored bits. When generating these rectangles we need to make sure that we have enough space for joints and for anti-aliasing, the latter of which simply requires adding a few extra pixels of space.
Joints come in two forms: an extrusion into a sharp point (miter) and a truncated version thereof. You can see sharp miter joints at point 2 and 3 (going clockwise from the left) and a truncated one at point 4. The shader decides between the two by checking the angle between consecutive line vectors with
and calculates the change in line length on one side of the line to
extrusion
. The extruded corners are the points where the edge of two line segments intersect at the end of the blue/red colored sections in the reference.Our rectangle needs to be large enough to include these points, so it is elongated by
abs(extrusion)
plus some padding for AA along the line direction. Along the linewidth directions, the rectangle expands by0.5 * linewidth + AA
.2. Main rectangle SDF
The next step is to generate a a signed distance field (SDF) which describes what's inside of the line segments and what is not. For a rectangle this would be given by
The shader splits this up into 3 components and computes it for each vertex in the geometry shader as
f_quad_sdf1
. The components arewhich the fragment shader combines as
sdf_x = max(f_quad_sdf1.x, f_quad_sdf.y)
to get the first component of the rect sdf andsdf_y = abs(f_quad_sdf.z) - f_linewidth
for the second. The reference shows every point with positivemax(sdf_x, sdf_y)
in a darker shade, resulting in the outline around the rectangle.3. Miter Joints
Drawing just the above would result in miter joints overlapping each other. To avoid this we also compute the signed distance field of the previous line segment along its line vector
v0
and the sdf of the next line segment along v1:In the fragment shader we then check for each pixel/fragment whether it is "more inside" the previous, current or next line segment. If it is "most inside" the current line segment it is drawn, otherwise it is discarded for the other segment to draw. This makes sure that each pixel of a joint is only drawn once.
The parts cut off by this process are visible in red and blue depending on which line segment they cut from.
Caveats/Notes:
+ 0.5
to each line-length sdf and roundingrect_vertex_pos = line_pos + round(offset)
. The rounding introduces a slight jitter. In GLMakie it seems to be fine to doround(128 * offset) / 128
to reduce/remove it, in WGLMakie that reintroduces over/underdraw.f_quad_sdf1.xy
by theabs(extrusion)
.4. Truncated Miter Joints
To truncate a miter joint we need introduce an extra edge which does the truncation. The parts cut off by this edge are visible in green in the reference. Each segment has two signed distance fields describing the truncation given by
If the edge is not truncated they default to a constant
-1
meaning no truncation. Otherwise they calculate the distance from the line vertex p1/p2 in the direction of far miter corner+- miter_n
and then move the edge a certain amount in that direction.Caveats
v0 = -v1
no overlap between the two segments will be shown, and if 1 is shorter than 0 parts of the line will disappear entirely. To fix this we introducevec2 f_linelength
as the maximum value for the previous and next line segments.Linestyles
Linestyles make things more complicated. Let's start off with a new reference image an the basic idea.
Pattern sampling
Linestyles are represented with a signed distance field (pattern) that indicates which parts of the line should be hidden based on the cumulative length of the line. The cumulative length is calculated on the CPU but still needs to be corrected in the geometry shader to fit the rectangle we generated. This basically just involves some offsetting based on the
extrusion
and AA paddingwhere index differentiates the start and end of a line segment and pattern_length maps pixel scale values to a range appropriate to the pattern.
Joints
Joints are a big problem for patterns. If we just do the above patterns get fragmented if they switch between an on and off section in a joint. Consider for example a square from a :dot linestyle starting at point 2 in the reference. Most of the red section belonging to the right segment will read "no draw", with the little triangle at the bottom right reading "draw". Most of the blue section belonging to the left segment will read "draw" with the little triangle at the bottom left reading "no draw`. These little triangles as well as some uncolored parts will make the pattern discontinuous.
The solution used here gives patterns two main options:
These options are controlled by
process_pattern
which returns a value each for the line start and end, describing whether it be adjusted (+-1) or not (0). It also setsf_pattern_overwrite
which tells the fragment shader when to freeze the pattern in a "draw" or "no draw" state and which of the two it should be.For each joint three values of the pattern are sampled: The center, i.e. the value at shared point and
left (right) = - (+) max(extrusion, 0.5 * linewidth)
which is the minimum distance needed for segments to not overlap. We then choose between option (1) and (2) based on the signs of (left, center, right):You can see option (1) taking effect at point 2 and option (2) at point 3 and 4.
For option (2) we need to make a bunch of adjustments to the geometry and SDF's we have set up:
f_quad_sdf1.xy
needs to extrude to at least0.5 * linewidth
to not discard patterns on elongated line segmentsf_quad_sdf0/1
to a large constant value if the respective side is elongated or shortened.Colors
Since the vertex position of our line geometry do not match the positions where two line segments actually connect we cannot just pass colors as a vertex attribute. Specifically on the short side of a joint we would still render a color mixture rather than the color assigned to the respective line point. Extrapolating the color of the vertex in the geometry shader also doesn't work due to how colors gets interpolated on a triangle.
So instead we do the interpolation manually, by considering the distance from the left edge in line direction normalized to the distance between the left and right edge. To avoid problems with the short side of the line segment becoming <= 0 we do this calculation in the fragment shader.
Testing Code
TODO:
test/implement variable line widthsthey create more problems than they're worthfix disconnect cause by linewidth missmatch between start and end of a jointfix overzealous cut-out with largelinewidth_delta/linelength
(caused by line rect becoming concave with a sharp joint)find a better solution that removing jointsmaybe try adaptive method for solid linessegment_length0/2
, remove number fromf_extrusion12
extrusion
so linestart and linelength matches vertex definitionvertex attribute)
For future prs see #3641.
Notes on tests
Issues
lines
get interpolated when there is a lot of points (GLMakie) #3547Type of change
lines([1,1,1,1, NaN, 2,2,2,2], linewidth = [5,5,5,5,0,10,10,10,10], linestyle = :dot)
)Checklist
AddedEnabled reference image tests for new plotting functions, recipes, visual options, etc.