Gavin Ridley

Results 129 comments of Gavin Ridley

@makeclean Through any non-vacuum material? It would be easy to do in principle. In fact, trivial, since this records the stack of material IDs getting passed through as the ray...

The projection is looking a lot better now. There are two modes: Perspective: ![persp](https://user-images.githubusercontent.com/18088906/146461144-8432ed00-9234-46d3-8f75-0ab13a7964f3.gif) Orthographic: ![orthographic](https://user-images.githubusercontent.com/18088906/146461152-c5e86427-a007-4c8a-a89a-7110bc3f4257.gif)

OK, so, it was a little tough to get this parallelized cleanly. There are two reasons why naive omp parallel for doesn't work here. 1) omp parallel for, if applied...

OK, so, I've got it set up where you can wireframe only select material IDs now. From the hex lattice example: ```python r = 5 import numpy as np for...

@pshriwise We are now good to go on a review! Phew... there are so many little details here to fill out. The only thing that's missing, I think, is starting...

As one more note, I think perhaps the camera polar angle values for each of the pixels should maybe not be uniformly spaced but rather be spaced according to cos(mu)...

OK... and there is redundant code in the regression test I added. I wish I could import what's in regression_tests/plot, but pytest doesn't like to import from relative directories, it...

Alright, I had to resolve a merge conflict related to testing the recent to/from XML functionality that was added to the Plot class by Paul. I'll have to add corresponding...

@pshriwise just getting on this again. The latest commit *might* get tests passing again. I'm hoping to test this a bit more extensively before merging. In particular, I'm hoping to...

Thanks @pshriwise. After looking at what would have to go in to get this working in the plotter, it would be maybe a bit too much work for a side...