K. S. Ernest (iFire) Lee
K. S. Ernest (iFire) Lee
Also replaced: ``` def filter_by_tags(query, tag) do query |> join(:inner, [a], p in fragment( """ WITH articles AS( SELECT a.id, unnest(a.tag_list) tag FROM articles a ORDER BY a.id, a.created_at) select...
As of Cockroachdb 4.2.1 the subquery issue is gone, but the system doesn't work.
The same ecto driver for postgresql is able to be used for cockroachdb.
As a expedient way of implementing this without a graph editor, one should be able to use the string based evaluator feature of anl.
I was able to create this for 2d texture but I'm unable to do the math for the octave based fbm. ``` Index last_layer = anl_noise->fractal_layer(anl::BASIS_SIMPLEX,anl::INTERP_QUINTIC, 1.0f, 1.0f/get_period(), get_seed()); for...
Getting weird results with: https://i.imgur.com/pYIgic6.png ```cpp Index fractal_layer = anl_noise->fractal_layer(anl::BASIS_SIMPLEX, anl::INTERP_QUINTIC, 1.0f, 1.0f, get_seed()); Index fractal = anl_noise->fractal(anl_noise->seed(get_seed()), fractal_layer, get_persistence(), get_lacunarity(), get_octaves(), 1.0f); Index x = anl_noise->scale_x(fractal, get_period()); layer =...
This is what I have: ``` Index quintic = anl_noise->constant(3); //Notice quintic interpolation is passed by index, not enum value. //I think this is done to use different kind of...
You got it. I want the AnlNoise to do exactly what OpenSimplexNoise does currently, because my goal is to have a different implementation of seamless 3d noise to compare against...
I was able to do 3d noise, but it's very difficult to tell between the seamless and non seamless.   Also I need a way to invert the value....
My approach is to have the same interface as opensimplex which seems to be an implementation of [fbm], so that's what I've emulated here. I've also done the noise parent...