Datasets:
text
stringlengths 0
224
|
---|
0.024444444444444446 |
0.024444268283188474 |
0.024443739827350083 |
0.024442859160713357 |
0.024441626422903713 |
0.024440041809365726 |
0.02443810557133215 |
0.0244358180157841 |
0.024433179505402376 |
0.024430190458509943 |
0.024426851349005633 |
0.02442316270628899 |
0.024419125115176365 |
0.024414739215808168 |
0.02441000570354737 |
0.024404925328869304 |
0.024399498897242636 |
0.02439372726900167 |
0.02438761135920996 |
0.02438115213751522 |
0.0243743506279956 |
0.024367207908997306 |
0.024359725112963658 |
0.024351903426255532 |
0.02434374408896326 |
0.024335248394710036 |
0.02432641769044682 |
0.024317253376238766 |
0.02430775690504327 |
0.024297929782479584 |
0.02428777356659015 |
0.02427728986759353 |
0.024266480347629158 |
0.024255346720493773 |
0.02424389075136975 |
0.02423211425654521 |
0.02422001910312605 |
0.02420760720873995 |
0.024194880541232328 |
0.024181841118354343 |
0.024168491007442987 |
0.024154832325093346 |
0.024140867236822985 |
0.024126597956728644 |
0.0241120267471352 |
0.024097155918236978 |
0.024081987827731487 |
0.024066524880445608 |
0.02405076952795433 |
0.02403472426819208 |
0.024018391645056654 |
0.024001774248005914 |
0.023984874711647237 |
0.023967695715319835 |
0.023950239982669905 |
0.02393251028121886 |
0.023914509421924527 |
0.02389624025873549 |
0.023877705688138618 |
0.023858908648699807 |
0.023839852120598137 |
0.023820539125153327 |
0.023800972724346774 |
0.023781156020336036 |
0.02376109215496304 |
0.023740784309255927 |
0.023720235702924752 |
0.023699449593850976 |
0.023678429277570977 |
0.023657178086753543 |
0.02363569939067149 |
0.023613996594667487 |
0.02359207313961415 |
0.023569932501368535 |
0.023547578190221005 |
0.023525013750338743 |
0.023502242759203807 |
0.023479268827045957 |
0.02345609559627026 |
0.023432726740879616 |
0.023409165965892244 |
0.023385417006754287 |
0.023361483628747574 |
0.02333736962639263 |
0.02331307882284711 |
0.02328861506929963 |
0.02326398224435918 |
0.023239184253440206 |
0.02321422502814341 |
0.02318910852563242 |
0.0231638387280064 |
0.023138419641668708 |
0.02311285529669171 |
0.023087149746177805 |
0.02306130706561685 |
0.023035331352240007 |
0.02300922672437014 |
0.02298299732076888 |
0.02295664729998043 |
0.022930180839672284 |
Dataset Description
This dataset contains 3D objects representing a topologically diverse collection of surfaces, each generated from closed, parameterized curves with varying number of self-intersections (singular knots). The surfaces are organized by topological genus, ranging from 0 to 10. For each surface, we included the following four files:
Non-Smoothed STL Mesh (
*_ns.stl
): A 3D mesh of the surface with sharp geometry and unmodified vertex positions. This version retains the raw output of the Marching Cubes algorithm.Smoothed STL Mesh (
.stl
): A geometrically smoothed version of the*_ns.stl
surface, generated using Laplacian vertex smoothing in Blender. This process adjusts vertex positions to reduce sharp edges and improve regularity, modifying surface area and volume while preserving the mesh connectivity and topological features (e.g., genus and Euler characteristic).Scalar Field (
*_sf.txt
): A plain-text file encoding the scalar field used to generate the surface via the Marching Cubes algorithm. The isosurface at level 0 defines the mesh geometry in the*_ns.stl
file.Blow-up Profile (
*_bup.txt
): A plain-text file containing the radius at each point along the discretized curve. These radii define the thickness of the tubular neighborhood used to generate the scalar field.
Filename Encoding Convention
Filenames follow the pattern:
g{genus}_{knot_type}_{n_x},{n_y},{n_z}_{φ_x},{φ_y},{φ_z}_{f}_{c}_{a}_r{r_min}_{r_max}_v{resolution}.stl
Each component encodes geometric or topological information.
For example:
g7_lissajous_3,5,8,0,pi2,0_03_1.1_0.2_r0.02_0.029_v90.stl
g7
: Topological genus of the surface. In this example, the genus is 7 (i.e., the surface has 7 holes).lissajous
orfibonacci
: Knot type. Most elements were generated from Lissajous (singular) knots, but just a couple from Fibonacci (singular) knots.3,5,8
: The frequenciesn_x
,n_y
,n_z
used in the parametric equations of the curve, corresponding to the x, y, and z coordinates.0,pi2,0
: The phase shiftsφ_x
,φ_y
,φ_z
in each coordinate. Notation likepi2
represents fractions of π (e.g.,pi2
= π/2,pi3
= π/3, etc.).03_1.1_0.2
: Parameters of the (cosine-based) sinusoidal radius variation for the tubular neighborhood around the curve:03
: frequencyf
,1.1
: constant termc
,0.2
: amplitudea
,
from the radius variation function:
r(t) = c ± a·cos(f·t)
, wheret
in[0,2π)
.r0.02_0.029
: Minimum and maximum radius of the tubular neighborhood.v90
: Voxel resolution per axis. While v90 nominally refers to a 90 × 90 × 90 voxel grid, an offset of 5 voxels per side was added to prevent surface clipping at the bounding box edges. As a result, the actual scalar field is discretized into 101 × 101 × 101 = 1,030,301 grid points, yielding 1,000,000 voxels in total..stl
: File extension. In this example, as there is no suffix, this filename ending corresponds to the smoothed version of the surface mesh.As mentioned earlier, the other file types use the following suffixes:
_ns.stl
: The non-smoothed surface mesh, output directly from the Marching Cubes algorithm (raw geometry)._sf.txt
: The scalar field used to generate the surface._bup.txt
: The blow-up profile, i.e., the radius function discretization for the analytical envelope.
Acknowledgements
- The authors thank DGTIC-UNAM for access to the Miztli HPC resources, grant LANCAD-UNAM-DGTIC-430.
- RF thanks CONAHCyT for a graduate fellowship.
- This work was supported by Universidad Nacional Autónoma de México Postdoctoral Program (POSDOC) for author EIVR, who also acknowledges the postdoctoral fellowship received during the production of this work.
- VM acknowledges the support from project PAPIIT TA100924 "Investigación de sesgos inductivos en aprendizaje profundo y sus aplicaciones."
- Downloads last month
- 1,810