├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── dependencies.py ├── icons.py ├── icons ├── sv_ex_root_icon.png ├── sv_ex_sdf_icon.png └── svg │ ├── sv_ex_attract.svg │ ├── sv_ex_bvspline.svg │ ├── sv_ex_mcubes.svg │ ├── sv_ex_minsurface.svg │ ├── sv_ex_msquares.svg │ └── sv_ex_nabla.svg ├── nodes ├── __init__.py ├── array │ ├── arr_get_item.py │ ├── arr_math.py │ ├── arr_matrix_in.py │ ├── arr_number_range.py │ ├── arr_polyline.py │ ├── arr_polyline_length.py │ ├── arr_resample_polyline.py │ ├── arr_rotate_vector.py │ ├── arr_subdivide_polyline.py │ ├── arr_vector_in.py │ ├── arr_vector_math.py │ ├── arr_vector_noise.py │ ├── array_length.py │ ├── array_to_py.py │ ├── array_viewer.py │ ├── bridge_polylines.py │ ├── broadcast_arrays.py │ ├── concatenate_arrays.py │ ├── flatten_array.py │ ├── flattening_array.py │ ├── flip_mesh_normals_array.py │ ├── input_array.py │ ├── input_value.py │ ├── join_mesh_array.py │ ├── local_index.py │ ├── matrix_transform.py │ ├── move_mesh_array.py │ ├── move_vertices.py │ ├── new_axis.py │ ├── print_array.py │ ├── py_to_array.py │ ├── random_array.py │ ├── run_lengths.py │ ├── set_field.py │ ├── slice_array.py │ ├── to_regular_array.py │ ├── unflatten_array.py │ ├── unflattening_array.py │ ├── unzip_array.py │ ├── where_array.py │ └── zip_array.py ├── curve │ ├── __init__.py │ ├── approximate_fourier_curve.py │ ├── fourier_curve.py │ ├── geodesic_cauchy.py │ ├── geodesic_curve.py │ ├── interpolate_fourier_curve.py │ ├── intersect_surface_plane.py │ ├── nurbs_goal_closed.py │ ├── nurbs_goal_cpt.py │ ├── nurbs_goal_point.py │ ├── nurbs_goal_tangent.py │ └── nurbs_solver.py ├── data │ ├── data_item.py │ ├── excel_read.py │ ├── excel_write.py │ └── spreadsheet.py ├── exchange │ ├── __init__.py │ ├── api_in.py │ ├── api_out.py │ └── svg_read.py ├── field │ ├── __init__.py │ ├── exponential_map.py │ └── vfield_lines_on_surface.py ├── matrix │ └── project_matrix.py ├── sdf │ ├── estimate_bounds.py │ ├── sdf_blend.py │ ├── sdf_boolean.py │ ├── sdf_dilate_erode.py │ ├── sdf_extrude.py │ ├── sdf_extrude_to.py │ ├── sdf_generate.py │ ├── sdf_linear_bend.py │ ├── sdf_orient.py │ ├── sdf_revolve.py │ ├── sdf_rotate.py │ ├── sdf_scale.py │ ├── sdf_shell.py │ ├── sdf_slice.py │ ├── sdf_transform.py │ ├── sdf_transition_linear.py │ ├── sdf_transition_radial.py │ ├── sdf_translate.py │ └── sdf_twist.py ├── sdf_primitives │ ├── sdf2d_circle.py │ ├── sdf2d_hexagon.py │ ├── sdf2d_polygon.py │ ├── sdf_box.py │ ├── sdf_capsule.py │ ├── sdf_cylinder.py │ ├── sdf_plane.py │ ├── sdf_platonic_solid.py │ ├── sdf_rounded_box.py │ ├── sdf_rounded_cylinder.py │ ├── sdf_slab.py │ ├── sdf_sphere.py │ └── sdf_torus.py ├── shapely │ ├── shapely_area.py │ ├── shapely_boolean.py │ ├── shapely_boundary.py │ ├── shapely_buffer.py │ ├── shapely_clip_by_rect.py │ ├── shapely_concave_hull.py │ ├── shapely_convex_hull.py │ ├── shapely_distance.py │ ├── shapely_from_mesh.py │ ├── shapely_length.py │ ├── shapely_min_circle.py │ ├── shapely_offset.py │ ├── shapely_point.py │ ├── shapely_polygon.py │ ├── shapely_polyline.py │ ├── shapely_simplify.py │ ├── shapely_transform.py │ ├── shapely_triangulate.py │ └── shapely_voronoi.py ├── solid │ └── solid_waffle.py ├── spatial │ ├── delaunay3d_surface.py │ └── delaunay_mesh.py └── surface │ ├── __init__.py │ ├── curvature_lines.py │ ├── implicit_surface_solver.py │ ├── smooth_spline.py │ └── triangular_mesh.py ├── nodes_index.py ├── run_tests.sh ├── settings.py ├── testing.py ├── tests ├── make_fields.py ├── process_references_tests.py ├── references │ ├── extra_apply_1.blend.gz │ ├── extra_apply_field_list_1.blend.gz │ ├── extra_attractor_fields_1.blend.gz │ ├── extra_attractor_fields_2.blend.gz │ ├── extra_attractor_fields_8.blend.gz │ ├── extra_bend_along_curve_1.blend.gz │ ├── extra_bend_along_min_surface_1.blend.gz │ ├── extra_bend_along_nurbs_surface_1.blend.gz │ ├── extra_diff_ops_2.blend.gz │ ├── extra_diff_ops_3.blend.gz │ ├── extra_diff_ops_4.blend.gz │ ├── extra_divergence_1.blend.gz │ ├── extra_dual_metaball_1.blend.gz │ ├── extra_dual_noise_1.blend.gz │ ├── extra_generic_surface_1.blend.gz │ ├── extra_merge_scalar_fields_1.blend.gz │ ├── extra_min_sfield_1.blend.gz │ ├── extra_min_surface_uv_1.blend.gz │ ├── extra_nurbs_surf_interpolation_1.blend.gz │ ├── extra_scalar_field_lambda_1.blend.gz │ ├── extra_vector_fields_1.blend.gz │ └── extra_voronoi3d_1.blend.gz ├── scalar_field_tests.py └── vector_field_tests.py └── utils ├── __init__.py ├── api.py ├── array_math ├── __init__.py └── array_numba.py ├── curve ├── __init__.py └── polynomial.py ├── geodesic.py ├── manifolds.py ├── modules ├── __init__.py └── spreadsheet │ ├── __init__.py │ ├── evaluator.py │ └── ui.py ├── sdf.py ├── shapely.py ├── sockets.py └── svg_import.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/__init__.py -------------------------------------------------------------------------------- /dependencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/dependencies.py -------------------------------------------------------------------------------- /icons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/icons.py -------------------------------------------------------------------------------- /icons/sv_ex_root_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/icons/sv_ex_root_icon.png -------------------------------------------------------------------------------- /icons/sv_ex_sdf_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/icons/sv_ex_sdf_icon.png -------------------------------------------------------------------------------- /icons/svg/sv_ex_attract.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/icons/svg/sv_ex_attract.svg -------------------------------------------------------------------------------- /icons/svg/sv_ex_bvspline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/icons/svg/sv_ex_bvspline.svg -------------------------------------------------------------------------------- /icons/svg/sv_ex_mcubes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/icons/svg/sv_ex_mcubes.svg -------------------------------------------------------------------------------- /icons/svg/sv_ex_minsurface.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/icons/svg/sv_ex_minsurface.svg -------------------------------------------------------------------------------- /icons/svg/sv_ex_msquares.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/icons/svg/sv_ex_msquares.svg -------------------------------------------------------------------------------- /icons/svg/sv_ex_nabla.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/icons/svg/sv_ex_nabla.svg -------------------------------------------------------------------------------- /nodes/__init__.py: -------------------------------------------------------------------------------- 1 | # __init__.py 2 | -------------------------------------------------------------------------------- /nodes/array/arr_get_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/array/arr_get_item.py -------------------------------------------------------------------------------- /nodes/array/arr_math.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/array/arr_math.py -------------------------------------------------------------------------------- /nodes/array/arr_matrix_in.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/array/arr_matrix_in.py -------------------------------------------------------------------------------- /nodes/array/arr_number_range.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/array/arr_number_range.py -------------------------------------------------------------------------------- /nodes/array/arr_polyline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/array/arr_polyline.py -------------------------------------------------------------------------------- /nodes/array/arr_polyline_length.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/array/arr_polyline_length.py -------------------------------------------------------------------------------- /nodes/array/arr_resample_polyline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/array/arr_resample_polyline.py -------------------------------------------------------------------------------- /nodes/array/arr_rotate_vector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/array/arr_rotate_vector.py -------------------------------------------------------------------------------- /nodes/array/arr_subdivide_polyline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/array/arr_subdivide_polyline.py -------------------------------------------------------------------------------- /nodes/array/arr_vector_in.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/array/arr_vector_in.py -------------------------------------------------------------------------------- /nodes/array/arr_vector_math.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/array/arr_vector_math.py -------------------------------------------------------------------------------- /nodes/array/arr_vector_noise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/array/arr_vector_noise.py -------------------------------------------------------------------------------- /nodes/array/array_length.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/array/array_length.py -------------------------------------------------------------------------------- /nodes/array/array_to_py.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/array/array_to_py.py -------------------------------------------------------------------------------- /nodes/array/array_viewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/array/array_viewer.py -------------------------------------------------------------------------------- /nodes/array/bridge_polylines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/array/bridge_polylines.py -------------------------------------------------------------------------------- /nodes/array/broadcast_arrays.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/array/broadcast_arrays.py -------------------------------------------------------------------------------- /nodes/array/concatenate_arrays.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/array/concatenate_arrays.py -------------------------------------------------------------------------------- /nodes/array/flatten_array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/array/flatten_array.py -------------------------------------------------------------------------------- /nodes/array/flattening_array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/array/flattening_array.py -------------------------------------------------------------------------------- /nodes/array/flip_mesh_normals_array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/array/flip_mesh_normals_array.py -------------------------------------------------------------------------------- /nodes/array/input_array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/array/input_array.py -------------------------------------------------------------------------------- /nodes/array/input_value.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/array/input_value.py -------------------------------------------------------------------------------- /nodes/array/join_mesh_array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/array/join_mesh_array.py -------------------------------------------------------------------------------- /nodes/array/local_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/array/local_index.py -------------------------------------------------------------------------------- /nodes/array/matrix_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/array/matrix_transform.py -------------------------------------------------------------------------------- /nodes/array/move_mesh_array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/array/move_mesh_array.py -------------------------------------------------------------------------------- /nodes/array/move_vertices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/array/move_vertices.py -------------------------------------------------------------------------------- /nodes/array/new_axis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/array/new_axis.py -------------------------------------------------------------------------------- /nodes/array/print_array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/array/print_array.py -------------------------------------------------------------------------------- /nodes/array/py_to_array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/array/py_to_array.py -------------------------------------------------------------------------------- /nodes/array/random_array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/array/random_array.py -------------------------------------------------------------------------------- /nodes/array/run_lengths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/array/run_lengths.py -------------------------------------------------------------------------------- /nodes/array/set_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/array/set_field.py -------------------------------------------------------------------------------- /nodes/array/slice_array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/array/slice_array.py -------------------------------------------------------------------------------- /nodes/array/to_regular_array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/array/to_regular_array.py -------------------------------------------------------------------------------- /nodes/array/unflatten_array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/array/unflatten_array.py -------------------------------------------------------------------------------- /nodes/array/unflattening_array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/array/unflattening_array.py -------------------------------------------------------------------------------- /nodes/array/unzip_array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/array/unzip_array.py -------------------------------------------------------------------------------- /nodes/array/where_array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/array/where_array.py -------------------------------------------------------------------------------- /nodes/array/zip_array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/array/zip_array.py -------------------------------------------------------------------------------- /nodes/curve/__init__.py: -------------------------------------------------------------------------------- 1 | # __init__.py 2 | -------------------------------------------------------------------------------- /nodes/curve/approximate_fourier_curve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/curve/approximate_fourier_curve.py -------------------------------------------------------------------------------- /nodes/curve/fourier_curve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/curve/fourier_curve.py -------------------------------------------------------------------------------- /nodes/curve/geodesic_cauchy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/curve/geodesic_cauchy.py -------------------------------------------------------------------------------- /nodes/curve/geodesic_curve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/curve/geodesic_curve.py -------------------------------------------------------------------------------- /nodes/curve/interpolate_fourier_curve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/curve/interpolate_fourier_curve.py -------------------------------------------------------------------------------- /nodes/curve/intersect_surface_plane.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/curve/intersect_surface_plane.py -------------------------------------------------------------------------------- /nodes/curve/nurbs_goal_closed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/curve/nurbs_goal_closed.py -------------------------------------------------------------------------------- /nodes/curve/nurbs_goal_cpt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/curve/nurbs_goal_cpt.py -------------------------------------------------------------------------------- /nodes/curve/nurbs_goal_point.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/curve/nurbs_goal_point.py -------------------------------------------------------------------------------- /nodes/curve/nurbs_goal_tangent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/curve/nurbs_goal_tangent.py -------------------------------------------------------------------------------- /nodes/curve/nurbs_solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/curve/nurbs_solver.py -------------------------------------------------------------------------------- /nodes/data/data_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/data/data_item.py -------------------------------------------------------------------------------- /nodes/data/excel_read.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/data/excel_read.py -------------------------------------------------------------------------------- /nodes/data/excel_write.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/data/excel_write.py -------------------------------------------------------------------------------- /nodes/data/spreadsheet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/data/spreadsheet.py -------------------------------------------------------------------------------- /nodes/exchange/__init__.py: -------------------------------------------------------------------------------- 1 | # __init__.py 2 | -------------------------------------------------------------------------------- /nodes/exchange/api_in.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/exchange/api_in.py -------------------------------------------------------------------------------- /nodes/exchange/api_out.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/exchange/api_out.py -------------------------------------------------------------------------------- /nodes/exchange/svg_read.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/exchange/svg_read.py -------------------------------------------------------------------------------- /nodes/field/__init__.py: -------------------------------------------------------------------------------- 1 | # __init__.py 2 | -------------------------------------------------------------------------------- /nodes/field/exponential_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/field/exponential_map.py -------------------------------------------------------------------------------- /nodes/field/vfield_lines_on_surface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/field/vfield_lines_on_surface.py -------------------------------------------------------------------------------- /nodes/matrix/project_matrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/matrix/project_matrix.py -------------------------------------------------------------------------------- /nodes/sdf/estimate_bounds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/sdf/estimate_bounds.py -------------------------------------------------------------------------------- /nodes/sdf/sdf_blend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/sdf/sdf_blend.py -------------------------------------------------------------------------------- /nodes/sdf/sdf_boolean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/sdf/sdf_boolean.py -------------------------------------------------------------------------------- /nodes/sdf/sdf_dilate_erode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/sdf/sdf_dilate_erode.py -------------------------------------------------------------------------------- /nodes/sdf/sdf_extrude.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/sdf/sdf_extrude.py -------------------------------------------------------------------------------- /nodes/sdf/sdf_extrude_to.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/sdf/sdf_extrude_to.py -------------------------------------------------------------------------------- /nodes/sdf/sdf_generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/sdf/sdf_generate.py -------------------------------------------------------------------------------- /nodes/sdf/sdf_linear_bend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/sdf/sdf_linear_bend.py -------------------------------------------------------------------------------- /nodes/sdf/sdf_orient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/sdf/sdf_orient.py -------------------------------------------------------------------------------- /nodes/sdf/sdf_revolve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/sdf/sdf_revolve.py -------------------------------------------------------------------------------- /nodes/sdf/sdf_rotate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/sdf/sdf_rotate.py -------------------------------------------------------------------------------- /nodes/sdf/sdf_scale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/sdf/sdf_scale.py -------------------------------------------------------------------------------- /nodes/sdf/sdf_shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/sdf/sdf_shell.py -------------------------------------------------------------------------------- /nodes/sdf/sdf_slice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/sdf/sdf_slice.py -------------------------------------------------------------------------------- /nodes/sdf/sdf_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/sdf/sdf_transform.py -------------------------------------------------------------------------------- /nodes/sdf/sdf_transition_linear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/sdf/sdf_transition_linear.py -------------------------------------------------------------------------------- /nodes/sdf/sdf_transition_radial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/sdf/sdf_transition_radial.py -------------------------------------------------------------------------------- /nodes/sdf/sdf_translate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/sdf/sdf_translate.py -------------------------------------------------------------------------------- /nodes/sdf/sdf_twist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/sdf/sdf_twist.py -------------------------------------------------------------------------------- /nodes/sdf_primitives/sdf2d_circle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/sdf_primitives/sdf2d_circle.py -------------------------------------------------------------------------------- /nodes/sdf_primitives/sdf2d_hexagon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/sdf_primitives/sdf2d_hexagon.py -------------------------------------------------------------------------------- /nodes/sdf_primitives/sdf2d_polygon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/sdf_primitives/sdf2d_polygon.py -------------------------------------------------------------------------------- /nodes/sdf_primitives/sdf_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/sdf_primitives/sdf_box.py -------------------------------------------------------------------------------- /nodes/sdf_primitives/sdf_capsule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/sdf_primitives/sdf_capsule.py -------------------------------------------------------------------------------- /nodes/sdf_primitives/sdf_cylinder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/sdf_primitives/sdf_cylinder.py -------------------------------------------------------------------------------- /nodes/sdf_primitives/sdf_plane.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/sdf_primitives/sdf_plane.py -------------------------------------------------------------------------------- /nodes/sdf_primitives/sdf_platonic_solid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/sdf_primitives/sdf_platonic_solid.py -------------------------------------------------------------------------------- /nodes/sdf_primitives/sdf_rounded_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/sdf_primitives/sdf_rounded_box.py -------------------------------------------------------------------------------- /nodes/sdf_primitives/sdf_rounded_cylinder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/sdf_primitives/sdf_rounded_cylinder.py -------------------------------------------------------------------------------- /nodes/sdf_primitives/sdf_slab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/sdf_primitives/sdf_slab.py -------------------------------------------------------------------------------- /nodes/sdf_primitives/sdf_sphere.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/sdf_primitives/sdf_sphere.py -------------------------------------------------------------------------------- /nodes/sdf_primitives/sdf_torus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/sdf_primitives/sdf_torus.py -------------------------------------------------------------------------------- /nodes/shapely/shapely_area.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/shapely/shapely_area.py -------------------------------------------------------------------------------- /nodes/shapely/shapely_boolean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/shapely/shapely_boolean.py -------------------------------------------------------------------------------- /nodes/shapely/shapely_boundary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/shapely/shapely_boundary.py -------------------------------------------------------------------------------- /nodes/shapely/shapely_buffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/shapely/shapely_buffer.py -------------------------------------------------------------------------------- /nodes/shapely/shapely_clip_by_rect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/shapely/shapely_clip_by_rect.py -------------------------------------------------------------------------------- /nodes/shapely/shapely_concave_hull.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/shapely/shapely_concave_hull.py -------------------------------------------------------------------------------- /nodes/shapely/shapely_convex_hull.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/shapely/shapely_convex_hull.py -------------------------------------------------------------------------------- /nodes/shapely/shapely_distance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/shapely/shapely_distance.py -------------------------------------------------------------------------------- /nodes/shapely/shapely_from_mesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/shapely/shapely_from_mesh.py -------------------------------------------------------------------------------- /nodes/shapely/shapely_length.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/shapely/shapely_length.py -------------------------------------------------------------------------------- /nodes/shapely/shapely_min_circle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/shapely/shapely_min_circle.py -------------------------------------------------------------------------------- /nodes/shapely/shapely_offset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/shapely/shapely_offset.py -------------------------------------------------------------------------------- /nodes/shapely/shapely_point.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/shapely/shapely_point.py -------------------------------------------------------------------------------- /nodes/shapely/shapely_polygon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/shapely/shapely_polygon.py -------------------------------------------------------------------------------- /nodes/shapely/shapely_polyline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/shapely/shapely_polyline.py -------------------------------------------------------------------------------- /nodes/shapely/shapely_simplify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/shapely/shapely_simplify.py -------------------------------------------------------------------------------- /nodes/shapely/shapely_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/shapely/shapely_transform.py -------------------------------------------------------------------------------- /nodes/shapely/shapely_triangulate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/shapely/shapely_triangulate.py -------------------------------------------------------------------------------- /nodes/shapely/shapely_voronoi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/shapely/shapely_voronoi.py -------------------------------------------------------------------------------- /nodes/solid/solid_waffle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/solid/solid_waffle.py -------------------------------------------------------------------------------- /nodes/spatial/delaunay3d_surface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/spatial/delaunay3d_surface.py -------------------------------------------------------------------------------- /nodes/spatial/delaunay_mesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/spatial/delaunay_mesh.py -------------------------------------------------------------------------------- /nodes/surface/__init__.py: -------------------------------------------------------------------------------- 1 | # __init__.py 2 | -------------------------------------------------------------------------------- /nodes/surface/curvature_lines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/surface/curvature_lines.py -------------------------------------------------------------------------------- /nodes/surface/implicit_surface_solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/surface/implicit_surface_solver.py -------------------------------------------------------------------------------- /nodes/surface/smooth_spline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/surface/smooth_spline.py -------------------------------------------------------------------------------- /nodes/surface/triangular_mesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes/surface/triangular_mesh.py -------------------------------------------------------------------------------- /nodes_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/nodes_index.py -------------------------------------------------------------------------------- /run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/run_tests.sh -------------------------------------------------------------------------------- /settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/settings.py -------------------------------------------------------------------------------- /testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/testing.py -------------------------------------------------------------------------------- /tests/make_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/tests/make_fields.py -------------------------------------------------------------------------------- /tests/process_references_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/tests/process_references_tests.py -------------------------------------------------------------------------------- /tests/references/extra_apply_1.blend.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/tests/references/extra_apply_1.blend.gz -------------------------------------------------------------------------------- /tests/references/extra_apply_field_list_1.blend.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/tests/references/extra_apply_field_list_1.blend.gz -------------------------------------------------------------------------------- /tests/references/extra_attractor_fields_1.blend.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/tests/references/extra_attractor_fields_1.blend.gz -------------------------------------------------------------------------------- /tests/references/extra_attractor_fields_2.blend.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/tests/references/extra_attractor_fields_2.blend.gz -------------------------------------------------------------------------------- /tests/references/extra_attractor_fields_8.blend.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/tests/references/extra_attractor_fields_8.blend.gz -------------------------------------------------------------------------------- /tests/references/extra_bend_along_curve_1.blend.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/tests/references/extra_bend_along_curve_1.blend.gz -------------------------------------------------------------------------------- /tests/references/extra_bend_along_min_surface_1.blend.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/tests/references/extra_bend_along_min_surface_1.blend.gz -------------------------------------------------------------------------------- /tests/references/extra_bend_along_nurbs_surface_1.blend.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/tests/references/extra_bend_along_nurbs_surface_1.blend.gz -------------------------------------------------------------------------------- /tests/references/extra_diff_ops_2.blend.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/tests/references/extra_diff_ops_2.blend.gz -------------------------------------------------------------------------------- /tests/references/extra_diff_ops_3.blend.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/tests/references/extra_diff_ops_3.blend.gz -------------------------------------------------------------------------------- /tests/references/extra_diff_ops_4.blend.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/tests/references/extra_diff_ops_4.blend.gz -------------------------------------------------------------------------------- /tests/references/extra_divergence_1.blend.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/tests/references/extra_divergence_1.blend.gz -------------------------------------------------------------------------------- /tests/references/extra_dual_metaball_1.blend.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/tests/references/extra_dual_metaball_1.blend.gz -------------------------------------------------------------------------------- /tests/references/extra_dual_noise_1.blend.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/tests/references/extra_dual_noise_1.blend.gz -------------------------------------------------------------------------------- /tests/references/extra_generic_surface_1.blend.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/tests/references/extra_generic_surface_1.blend.gz -------------------------------------------------------------------------------- /tests/references/extra_merge_scalar_fields_1.blend.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/tests/references/extra_merge_scalar_fields_1.blend.gz -------------------------------------------------------------------------------- /tests/references/extra_min_sfield_1.blend.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/tests/references/extra_min_sfield_1.blend.gz -------------------------------------------------------------------------------- /tests/references/extra_min_surface_uv_1.blend.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/tests/references/extra_min_surface_uv_1.blend.gz -------------------------------------------------------------------------------- /tests/references/extra_nurbs_surf_interpolation_1.blend.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/tests/references/extra_nurbs_surf_interpolation_1.blend.gz -------------------------------------------------------------------------------- /tests/references/extra_scalar_field_lambda_1.blend.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/tests/references/extra_scalar_field_lambda_1.blend.gz -------------------------------------------------------------------------------- /tests/references/extra_vector_fields_1.blend.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/tests/references/extra_vector_fields_1.blend.gz -------------------------------------------------------------------------------- /tests/references/extra_voronoi3d_1.blend.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/tests/references/extra_voronoi3d_1.blend.gz -------------------------------------------------------------------------------- /tests/scalar_field_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/tests/scalar_field_tests.py -------------------------------------------------------------------------------- /tests/vector_field_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/tests/vector_field_tests.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/utils/__init__.py -------------------------------------------------------------------------------- /utils/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/utils/api.py -------------------------------------------------------------------------------- /utils/array_math/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/utils/array_math/__init__.py -------------------------------------------------------------------------------- /utils/array_math/array_numba.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/utils/array_math/array_numba.py -------------------------------------------------------------------------------- /utils/curve/__init__.py: -------------------------------------------------------------------------------- 1 | # __init__.py 2 | -------------------------------------------------------------------------------- /utils/curve/polynomial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/utils/curve/polynomial.py -------------------------------------------------------------------------------- /utils/geodesic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/utils/geodesic.py -------------------------------------------------------------------------------- /utils/manifolds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/utils/manifolds.py -------------------------------------------------------------------------------- /utils/modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/modules/spreadsheet/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/modules/spreadsheet/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/utils/modules/spreadsheet/evaluator.py -------------------------------------------------------------------------------- /utils/modules/spreadsheet/ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/utils/modules/spreadsheet/ui.py -------------------------------------------------------------------------------- /utils/sdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/utils/sdf.py -------------------------------------------------------------------------------- /utils/shapely.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/utils/shapely.py -------------------------------------------------------------------------------- /utils/sockets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/utils/sockets.py -------------------------------------------------------------------------------- /utils/svg_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portnov/sverchok-extra/HEAD/utils/svg_import.py --------------------------------------------------------------------------------