DavidHollman

Results 30 issues of DavidHollman

I noticed that neither CTRL-F4 nor CTRL-W work to close the current tab. This would be quite handy! (For some reason I ended up with 20+ tabs open while looking...

The comment in the sample INI file (https://github.com/wqweto/UMMM/blob/master/Sample.ini) says: ``` # uiaccess (optional) true/false or 0/1. Allows application to gain access to # the protected system UI. Default is 0...

For the `File` command, is there any way to use the `target_name `option without specifying interface names or a classes filter? The docs show this: > Parameters [interfaces] [classes_filter] [target_name]...

On occasion when we run UMMM for our project, for a given DLL there will be no entries added. It seems like this has occurred in cases where an older...

An option to have it paste immediately as a file, using default settings, and without showing any window would be a nice improvement. Probably 99% of the time this would...

Cross product behaves differently depending on whether you pass it a UnitVector3D or a Vector3D, even if they are numerically identical. Example (from the VS immediate window): ``` UnitVector3D.ZAxis.CrossProduct(UnitVector3D.ZAxis) 'UnitVector3D.ZAxis.CrossProduct(UnitVector3D.ZAxis)'...

Just thought I should point out that the copyright date on https://spatial.mathdotnet.com/License.html only goes through 2019. But on https://github.com/mathnet/mathnet-spatial/blob/master/LICENSE.md the text is the same yet the date is current (2021).

Ref: https://github.com/mathnet/mathnet-spatial/blob/master/src/Spatial/Euclidean/Plane.cs Here's the main body of `FromPoints`: if (p1 == p2 || p1 == p3 || p2 == p3) { throw new ArgumentException("Must use three different points"); } var...

`Plane.FromPoints()` will throw exceptions if the arguments don't actually form a plane. For instance, if you give it 3 points on the same line. I have some cases where I...

enhancement

I created a `Polygon2D `with the following corner points: ``` 0, 0, 10, 0, 10, 10, 0, 10 ``` i.e., a simple square. Note that `Polygon2D.EnclosesPoint` is documented as follows:...

question