• S sverchok
  • Информация о проекте
    • Информация о проекте
    • Активность
    • Метки
    • Участники
  • Репозиторий
    • Репозиторий
    • Файлы
    • Коммиты
    • Ветки
    • Теги
    • Участники
    • Диаграмма
    • Сравнение
  • Задачи 148
    • Задачи 148
    • Список
    • Доски
    • Спринты
  • Запросы на слияние 21
    • Запросы на слияние 21
  • CI/CD
    • CI/CD
    • Конвейеры
    • Задания
    • Расписания
  • Развертывания
    • Развертывания
    • Окружения
    • Релизы
  • Пакеты и реестры
    • Пакеты и реестры
    • Реестр пакетов
    • Реестр контейнеров
  • Мониторинг
    • Мониторинг
    • Инциденты
  • Аналитика
    • Аналитика
    • Поток ценности
    • CI/CD
    • Репозиторий
  • Wiki
    • Wiki
  • Сниппеты
    • Сниппеты
  • Активность
  • Диаграмма
  • Создать новую задачу
  • Задания
  • Коммиты
  • Доски с задачами
Свернуть панель
  • nikitronn
  • sverchok
  • Wiki
  • Script node examples

Script node examples · Изменения

История страницы
Updated Script node examples (markdown) создал Май 06, 2021 по автору Dealga McArdle's avatar Dealga McArdle
Показать
Построчно Рядом
Script-node-examples.md
Просмотреть страницу @1fd67927
Script node is one of the ways you can use Python to interact with the nodetree.
Script node is one of the ways you can use Python to interact with the nodetree. If you are comfortable with Python, this will let you quickly make your own nodes, and iterate through code changes fast. (it has a "hot reload")
If you are comfortable with Python, this will let you quickly make your own nodes.
- Either by generating or modifying existing geometry.
- use Blender Python API (bpy) or any third party Python module.
- interact with other nodes or other parts of Blender, as a function of any imaginable input.
The documentation can be found [here](), but it's a bit clinical and will make more sense if you've explored some of the examples beforehand.
### Sine Petal.
sine petal was the first ever script written in ScriptNodeLite and I think it shows how to setup a node.
```python
```
and here's a `numpy` version of the same script, to show that there's a reason to learn `numpy` if you want to write fast and succinct code.
```python
```
\ Нет новой строки в конце файла
Клонировать репозиторий
  • For Users:
    • Web resources about Sverchok
    • Dependencies and their installation
      • Simple dependencies
      • PIP
        • Side modules
      • SciPy
      • SciKit image
      • Circlify
      • PyMcubes
      • GeomDL
      • FreeCAD
      • Open3D
    • Sverchok for Blender 2.8x Release Notes
    • Sverchok for Blender 2.79 Installation
    • Interface overview
    • Set up GitHub account for exporting node trees from Sverchok
    • Custom Defaults
    • Sverchok Extensions
    • FAQ
  • Examples:
    • Profile Node Examples
    • Script Node Examples
  • For Developers:
    • Install Development version
    • Contributing
      • Git practices
    • Building documentation tarball
    • Macros
    • Sverchok Node Tutorial
      • High-level node howto
      • Details