You are not logged in. Your edit will be placed in a queue until it is peer reviewed.
We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.
- 2Wow! I am very impressed with your work, as usual. Expect a bounty when the timer allows me to. If I may ask, why does the more dense tessellation seem to occur along one of the long diagonals, and not the other? Wouldn't you expect it to be more radially centred around the origin?Jasper– Jasper2025-10-20 17:22:10 +00:00Commented Oct 20 at 17:22
- One problem I've noticed: Triangles which are adjacent to more subdivided ones can have gaps when the subdivided ones interpolate an interior point along a line segment.Jasper– Jasper2025-10-20 18:20:00 +00:00Commented Oct 20 at 18:20
- 1Thanks for the kind words! The diagonal bias comes from the rectangular initial grid—it doesn’t perfectly capture the radial symmetry of the function. The gaps appear because refinement is non‑conforming: when one triangle is split but its neighbour isn’t, T‑junctions form. A fully conforming mesh (where every shared vertex belongs to all adjacent triangles) would fix this, but it requires maintaining mesh topology, which greatly complicates the code. I’m still thinking about these issues. It would be worth looking into how this is handled (or isn’t) in FEM.kabenyuk– kabenyuk2025-10-21 04:36:47 +00:00Commented Oct 21 at 4:36
- 1+1. Sometimes I wonder if people will implement a computer algebra system entirely in Lua, LaTeX and TikZ!!Apoorv Potnis– Apoorv Potnis2025-10-25 12:01:03 +00:00Commented Oct 25 at 12:01
- 1@ApoorvPotnis Thanks! Well, according to the Church–Turing thesis, if something is computable at all, it can be done in Lua—after all, Lua is Turing-complete. Whether it should be done in TikZ… that’s a question for the typesetting gods. 😅kabenyuk– kabenyuk2025-10-25 12:14:39 +00:00Commented Oct 25 at 12:14
| Show 1 more comment
How to Edit
- Correct minor typos or mistakes
- Clarify meaning without changing it
- Add related resources or links
- Always respect the author’s intent
- Don’t use edits to reply to the author
How to Format
- create code fences with backticks ` or tildes ~ ```
like so
``` - add language identifier to highlight code ```python
def function(foo):
print(foo)
``` - put returns between paragraphs
- for linebreak add 2 spaces at end
- _italic_ or **bold**
- indent code by 4 spaces
- backtick escapes
`like _so_` - quote by placing > at start of line
- to make links (use https whenever possible) <https://example.com>[example](https://example.com)<a href="https://example.com">example</a>
How to Tag
A tag is a keyword or label that categorizes your question with other, similar questions. Choose one or more (up to 5) tags that will help answerers to find and interpret your question.
- complete the sentence: my question is about...
- use tags that describe things or concepts that are essential, not incidental to your question
- favor using existing popular tags
- read the descriptions that appear below the tag
If your question is primarily about a topic for which you can't find a tag:
- combine multiple words into single-words with hyphens (e.g. tikz-pgf), up to a maximum of 35 characters
- creating new tags is a privilege; if you can't yet create a tag you need, then post this question without it, then ask the community to create it for you
lang-tex