Anshul Singhvi
Anshul Singhvi
This PR adds a short tutorial on creating a marginal histogram. It's mainly aimed at showing another use-case which involves gridlayouts within figures, and as a reference in case anyone...
- Major topics: - [ ] making 'publication quality' plots with Makie (still not sure how to do that) - [ ] `Scene` kwargs - resolution, background colour, etc. -...
# User experience - [x] Create a wrapper type to allow arbitrary transformations, which act on all coordinates. - [ ] Document `apply_transform`, and how to overload it ([existing methods...
There's some discussion going on in PlotUtils about switching to ColorSchemes as a provider of color gradients. However, there are some overlaps in PlotUtils' gradient names; for example,`:rainbow` exists in...
MWE: ```latex \documentclass[tikz, export=png]{standalone} \usepackage{circuitikzgit} \begin{document} \begin{tikzpicture} \draw (0, 0) to [R] (0, 2); \draw (1, 2) to [R] (1, 0); \end{tikzpicture} \begin{tikzpicture}[yscale = -1] \draw (0, 0) to [R]...
It would be really nice if there was support for JuliaPlots/PlotUtils.jl colormaps in PGFPlotsX. PlotUtils uses the `ColorGradient` construct, which is essentially an `Array{RGBA{N0f8}, 1}` with some length `n`. I...
When calling into C functions with large arrays of points, it would be useful to have mutable StructArrays of points. As far as I understand it, this would just involve...
Currently, the offset integers are shown using octal notation. Could we convert to decimal instead? ```julia TriangleFace(OffsetInteger{-1,UInt32}(0x0000003c), OffsetInteger{-1,UInt32}(0x0000003b), OffsetInteger{-1,UInt32}(0x0000003a)) ``` could be be ```julia TriangleFace(OffsetInteger{-1,UInt32}(60), OffsetInteger{-1,UInt32}(59), OffsetInteger{-1,UInt32}(58)) ``` or something.