- 31.12.2018 2 коммита
-
-
-
DolphinDream создал
- add 3 nodes: Quaternion In, Quaternion Out and Quaternion Math Quaternion In: Provides conversion from various quaternion components to quaternions (selectable via the mode option): - components wxyz - angle + axis - euler angles - matrix Quaternion Out: Provides conversion from quaterions to various quaternion components (selectable via the mode option): - components wxyz - angle + axis - euler angles - matrix Quaternion Math: Provides various quaternion arithmetic operations: ADD SUB MULTIPLY DIVIDE ROTATE DOT DISTANCE NEGATE CONJUGATE INVERT NORMALIZE SCALE MAGNITUDE Note: some operations take multiple quaternion inputs (input list grows as new sockets are connected), two quaternion inputs, single quaternion inputs, or quaternion + scalar input.
-
- 29.12.2018 3 коммита
-
-
DolphinDream создал
-
-
DolphinDream создал
-
- 28.12.2018 1 коммит
-
-
DolphinDream создал
The combinatoric operations implemented so far, based on itertools module are: PRODUCT PERMUTATION COMBINATION
-
- 25.12.2018 1 коммит
-
-
- 23.12.2018 1 коммит
-
-
DolphinDream создал
Port the same preference settings for xy/scale into the TVL node to fix the location and the size of the rendering.
-
- 18.12.2018 2 коммита
-
-
-
DolphinDream создал
Sum Sum Of Squares Product Average Geometric Mean Harmonic Mean Standard Deviation Root Mean Square Skewness Kurtosis Minimum Maximum Median Percentile Histogram
-
- 09.12.2018 1 коммит
-
-
Dealga McArdle создал
-
- 07.12.2018 2 коммита
-
-
-
DolphinDream создал
-
- 03.12.2018 2 коммита
- 30.11.2018 2 коммита
-
-
-
DolphinDream создал
Profiling the edge generation indicated that it is a slow operation and since this edge list is generated over and over in various nodes it makes sense to cache it. Profiling of various nodes (generating edges) indicated a speedup of almost two orders of magnitude in generating the edges compared to the list comprehension counterpart (e.g. edges = [[i, i+1] for i in range(N)]. With the proposed optimization, the list of edges are stored in an edge cache (e.g. [[0,1], [1,2]... [n-1,n]] .. and the cache is extended as longer edge lists are requested/generated. Any call to get_edge_list will return a subset of this edge cache thus not having to re-generate the same list over and over. Various nodes like the line, spiral, torus knot, ellipse etc, which that generate lines with linear list of edges can benefit substantially from this speedup. To get the linear edge list use: edges = get_edge_list(n) returning: [[0, 1], [1, 2], ... , [n-1, n]] To get the loop edge list use: edges = get_edge_loop(n) returning: [[0, 1], [1, 2], ... , [n-2, n-1], [n-1, 0]]
-
- 18.11.2018 3 коммита
-
-
Dealga McArdle создал
-
-
Dealga McArdle создал
-
- 17.11.2018 1 коммит
-
-
- 14.11.2018 1 коммит
-
-
DolphinDream создал
- made scale and xy multiplier pref settings generic to be used by multiple nodes - add scale/multiplier adjustments to the texture viewer and easing node and update stethoscope node to use the same scale/multiplier
-
- 13.11.2018 1 коммит
-
-
DolphinDream создал
For some screen resolutions (e.g. mac book pro with retina display / double pixel resolution) the index viewer node's font size was too small to read and needed a scale factor of 2x. With this new setting the user can define the desired font scale in the SV preference settings. The default font scale is 1.0.
-
- 08.11.2018 2 коммита
-
-
Alessandro Zomparelli создал
* added gcode node * description corrected * fixed continuous extrusion * added credits * added feed movements * new formula * close all shapes * list matches and path preview * text format * removed one output socket * Added Evaluate Image Node and fixed limit in Image Node * removed comments * CLIP and EXTEND tile mode in Evaluate Image Node * removed unnecessary code
-
zeffii создал
-
- 03.11.2018 1 коммит
-
-
Dealga McArdle создал
-
- 30.10.2018 1 коммит
-
-
Dealga McArdle создал
* naa.. its ugly * remove redundant code * remove iterator matcher code into sv_itertools
-
- 29.10.2018 3 коммита
-
-
Dealga McArdle создал
-
zeffii создал
-
Dealga McArdle создал
* introduce arc, prelim code * fillet for obtuse angles works * adds arc mode. nice * streamline input to arc calculation * remove debug print statement * update node documenation
-
- 24.10.2018 4 коммита
-
-
zeffii создал
-
zeffii создал
-
zeffii создал
-
Dealga McArdle создал
* add stub smoothline node * add node to index * fix functions xpline mode 1 * add simple one weight mode * iterate +1 * push ui changes * remove unused code * fix cycled verts * add pretext to epsilon, weight tests * add absolute mode and implement edge out * clearly mark unimplemented stuff
-
- 19.10.2018 2 коммита
- 02.10.2018 1 коммит
-
-
- 30.09.2018 1 коммит
-
-
Victor Doval создал
-
- 29.09.2018 1 коммит
-
-
Victor Doval создал
-
- 27.09.2018 1 коммит
-
-
Victor Doval создал
-