External Bugs: Tracker #34
Labels
No Label
abstractions
architecture
bug
distribution
docs
duplicate
enhancement
feature
physical
proposal
question
simulation
tooling
tracker
unconfirmed
ux
wontfix
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: so-rose/oscillode#34
Loading…
Reference in New Issue
There is no content yet.
Delete Branch "%!s(<nil>)"
Deleting a branch is permanent. Although the deleted branch may exist for a short time before cleaning up, in most cases it CANNOT be undone. Continue?
We want to be good citizens, and to do our part by reporting bugs we find in the software we rely on.
This Issue tracks anything we might find.
Blender Bugs
Reported:
Unreported:
__mp_main__
bug.mathutils.Matrix
), one would be disappointed - the UI prints the matrix property column-majormathutils.Matrix
is even stranger - firstly, the size of themathutils.Matrix
must be transposed with respect to the property size (again the col/row major mismatch). But secondly, even when accounting for the col/row major mismatch, the values of a ex. 2x3 (row-major) matrix (written to with a 3x2 matrix with same flattened sequence) is written in a very strange order:mathutils.Matrix
[[0,1], [2,3], [4,10]]
: Results in (UI displayed row-major)[[0,3], [4,1], [3,5]]
[cols,rows]
. The UI will display as the original array.myarray.flatten().reshape([cols,rows])
.np.array([[el1 for el1 in el0] for el0 in BLENDER_OBJ.matrix_prop]).flatten().reshape([rows,cols])
. Simply flatten the property read 2D array and re-shape by[rows,cols]
. Mind that data type out is equal to data type in.Thoughts / Enhancements:
alignment='CENTER'
also doesn't align the checkboxes in their cells for bool matrices.toggle=True
has no effect. It would be nice to get toggle buttons in a grid, instead of checkboxes.items
using theid_properties_ui
ofEnumProperty
.Tasks
__mp_main__
bug with a minimal working example.iienv
(#33).Tidy3D Bugs
Reported:
Unreported:
SimulationTask.get()
results in missing fields - including some of importance likecreated_at
.tidy3d.ModeSolverMonitor
.Thoughts / Enhancements:
Tasks
tdcloud
service thoroughly, gather issues that needed working around, and report them individually.td.web
that madetdcloud
difficult without it needing to be.