cserteGT3
cserteGT3
I'm thinking on this feature for a long time: it would be nice, if one could precompile all projects with one function call. It would be useful for example when...
From #586: `boundary` returns `nothing` for `*Surface` types, which means that `boundingbox` fails for the cylinder and cone as well. > The problem is that we didn't implement the boundingbox...
As discussed in #586 we should discover the options for implementing polygon/Ngon based frustums. I found these Wolfram MathWorld links useful: - [Conical Frustum](https://mathworld.wolfram.com/ConicalFrustum.html) - [Pyramidal Frustum](https://mathworld.wolfram.com/PyramidalFrustum.html) which is a...
I'm not really familiar with the internals of the package (nor .Net to be honest), but would it be possible to enable calling methods without specifyin optional arguments? I copied...
Based on the changes in #169 I found that [this line](https://github.com/tlienart/LiveServer.jl/blob/master/src/utils.jl#L231) should probably use the parameters instead of the default `"docs"` and `"build"` values. Though I am not sure why...
I have a simple documentation project with a few files and if the served site is opened in the browser and I edit a source file, `servedocs` starts evaluating and...
When running ```julia using GoogleSheets client = sheets_client(AUTH_SCOPE_READONLY) ``` I got an exception, that ``` ERROR: Credentials file not found: C:\Users\username\.julia/config/google_sheets/credentials.json ``` I've updated the Readme with the correct path,...
As discussed on zulip, this PR: * exports `inverse` * also mentions the function in the docs I'm not sure about the docs, but giving that I was looking for...
I discovered the following: ```julia t = Triangle((Point(-60.0, -35.0, 55.0), Point(-68.75, -33.43333, 54.90143), Point(-68.75, -35.0, 55.0))) b = Box((-77.5, -35.0, 54.6073),(-68.75, -31.8914, 55.0)) intersects(b, t) ``` Running this code causes...
I have a box, and a segment, that clearly doesn't intersect, but `intersects` returns true: ```julia julia> testbox = Box(Point3(-130, -18.78, 46.25), Point3(-110.75, -5.05, 60.0)) Box{3,Float64} ├─ min: Point(-130.0, -18.78,...