Skip to content
#

computational-geometry

Here are 308 public repositories matching this topic...

Go scientific library for machine learning, linear algebra, FFT, Bessel, elliptic, orthogonal polys, geometry, NURBS, numerical quadrature, 3D transfinite interpolation, random numbers, Mersenne twister, probability distributions, optimisation, graph, plotting, visualisation, tensors, eigenvalues, differential equations, more.

  • Updated May 13, 2020
  • Go
delaunator
mourner
mourner commented Sep 3, 2018

@redblobgames I'm wondering whether we could drop the script { display: block; } hack — while it's definitely cool, it has some drawbacks:

  • We can't add code highlighting to the code (e.g. with https://highlightjs.org/), which would help docs readability a lot.
  • We have to split the code into two files entangled together, which makes refactoring inconvenient.
  • It's impossible to lint it
jabidof
jabidof commented Jan 31, 2020

When pinch-zooming on leaflet I do a clusters recalculation like so:
const clusterizedMarkers = index.getClusters(clustersBounds, zoom);
The zoom has sometimes non integer values coming from Leaflet:
From my console: zoom value – 8.383082795293051
At that moment, index.getClusters crashes the app as the zoom value is not an integer (which makes sense!)

The fix in that case is to chang

sgiraudot
sgiraudot commented Feb 5, 2020

When writing 3D objects in WKT, a "Z" is supposed to be added to the prefix, such that a 2D point and a 3D point are differentiated:

POINT (1,2)
POINT Z (1,2,3)

But as far as I tested, when writing 3D objects using the WKT writer of Boost Geometry, the "Z" prefix is never written, leading to this kind of output:

POINT (1,2)
POINT (1,2,3)

It seems to be similar for other

1ec5
1ec5 commented Mar 8, 2019

IndexedCoordinate.distance is documented to be the distance from the start of the line string to the found coordinate:

https://github.com/mapbox/turf-swift/blob/1114acd2e35512586d3917b1c5f12f4d74344fb7/Sources/Turf/LineString.swift#L92-L104

However, LineString.closestCoordinate(to:) sets it to the distance from the input coordinate to the found coordinate:

https://github.com/mapbox/tu

schillic
schillic commented Mar 21, 2020

Some of the documentation is only added in an @require block. This leads to warnings with newer Documenter versions when loading the corresponding optional packages. Example:

julia> using LazySets, Polyhedra
┌ Warning: Replacing docs for `LazySets.HPolytope :: Union{Tuple{Union{HRepresentation{N}, Polyhedron{N}}}, Tuple{N}} where N` in module `LazySets`
└ @ Base.Docs docs/Docs.j

Improve this page

Add a description, image, and links to the computational-geometry topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the computational-geometry topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.