Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: thwee-alchemist/pythreejs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: jupyter-widgets/pythreejs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Able to merge. These branches can be automatically merged.
Loading
Showing with 10,686 additions and 4,319 deletions.
  1. +36 −0 .binder/environment.yml
  2. +31 −0 .binder/postBuild
  3. +235 −0 .github/workflows/ci.yml
  4. +5 −0 .gitignore
  5. +19 −0 .readthedocs.yaml
  6. +0 −35 .travis.yml
  7. +138 −0 CONTRIBUTING.md
  8. +4 −2 MANIFEST.in
  9. +111 −31 README.md
  10. +2 −2 docs/environment.yml
  11. +7 −5 docs/source/_static/helper.js
  12. +18 −8 docs/source/conf.py
  13. +2 −2 docs/source/develop-install.rst
  14. +3 −0 docs/source/examples/Renderer.nblink
  15. +3 −0 docs/source/examples/ThickLines.nblink
  16. +5 −1 docs/source/examples/index.rst
  17. +186 −0 docs/source/extending.rst
  18. BIN docs/source/images/extension-example.png
  19. +16 −1 docs/source/index.rst
  20. +21 −7 docs/source/installing.rst
  21. +10 −5 docs/source/introduction.rst
  22. +9 −3 docs/sphinxext/autodoc_traits.py
  23. +0 −8 environment.yml
  24. +1,590 −1,448 examples/Animation.ipynb
  25. +1 −1 examples/BufferAttributes and BufferGeometry.ipynb
  26. +289 −0 examples/Capture.ipynb
  27. +20 −19 examples/Examples.ipynb
  28. +721 −1,020 examples/Geometries.ipynb
  29. +1 −1 examples/GeometryVertices.ipynb
  30. +338 −0 examples/Picker.ipynb
  31. +704 −0 examples/Renderer.ipynb
  32. +1 −2 examples/Shaders.ipynb
  33. +1 −1 examples/Shadows.ipynb
  34. +125 −186 examples/Textures.ipynb
  35. +1,469 −0 examples/ThickLines.ipynb
  36. +4 −0 examples/conftest.py
  37. +7 −7 examples/renderer_limit.ipynb
  38. +3 −3 examples/superellipsoid.ipynb
  39. +1 −1 examples/test.ipynb
  40. +1 −10 examples/threejs/voxel_painter.ipynb
  41. +5 −0 install.json
  42. +36 −19 js/.eslintrc.js
  43. +4 −0 js/.npmignore
  44. +65 −0 js/LICENSE
  45. +39 −9 js/README.md
  46. +8 −0 js/amd-public-path.js
  47. +64 −33 js/package.json
  48. +3 −2 js/scripts/.eslintrc.js
  49. +0 −50 js/scripts/copy-files.js
  50. +4 −8 js/scripts/generate-enums.js
  51. +50 −30 js/scripts/generate-shader-utils.js
  52. +107 −63 js/scripts/generate-wrappers.js
  53. +61 −0 js/scripts/post-build.js
  54. +184 −115 js/scripts/prop-types.js
  55. +4 −0 js/scripts/templates/autodoc.mustache
  56. +7 −0 js/scripts/templates/js_bundle_helper.mustache
  57. +2 −2 js/scripts/templates/js_index.mustache
  58. +21 −19 js/scripts/templates/js_wrapper.mustache
  59. +3 −0 js/scripts/templates/py_enums.mustache
  60. +9 −2 js/scripts/templates/py_top_level_init.mustache
  61. +17 −7 js/scripts/templates/py_wrapper.mustache
  62. +1 −1 js/scripts/three-class-config-defaults.js
  63. +260 −85 js/scripts/three-class-config.js
  64. +18 −1 js/scripts/three-enum-config.js
  65. +43 −42 js/src/_base/Preview.js
  66. +215 −75 js/src/_base/Renderable.js
  67. +99 −56 js/src/_base/RendererPool.js
  68. +225 −168 js/src/_base/Three.js
  69. +26 −10 js/src/_base/enums.js
  70. +200 −0 js/src/_base/serializers.js
  71. +37 −7 js/src/_base/utils.js
  72. +52 −35 js/src/animation/AnimationAction.js
  73. +10 −10 js/src/cameras/CombinedCamera.js
  74. +3 −4 js/src/cameras/OrthographicCamera.js
  75. +3 −4 js/src/cameras/PerspectiveCamera.js
  76. +16 −17 js/src/controls/FlyControls.js
  77. +18 −13 js/src/controls/OrbitControls.js
  78. +33 −25 js/src/controls/Picker.js
  79. +19 −13 js/src/controls/TrackballControls.js
  80. +14 −14 js/src/core/BufferAttribute.js
  81. +31 −12 js/src/core/BufferGeometry.js
  82. +33 −4 js/src/core/Geometry.js
  83. +31 −0 js/src/core/InstancedBufferGeometry.js
  84. +23 −0 js/src/core/InstancedInterleavedBuffer.js
  85. +78 −0 js/src/core/InterleavedBuffer.js
  86. +88 −5 js/src/core/Object3D.js
  87. +53 −55 js/src/core/Renderer.js
  88. +0 −9 js/src/embed.js
  89. +27 −26 js/src/examples/.eslintrc.js
  90. +1 −1 js/src/examples/cameras/CombinedCamera.js
  91. +2 −8 js/src/examples/controls/MomentumCameraControls.js
  92. +95 −87 js/src/examples/controls/OrbitControls.js
  93. +8 −14 js/src/examples/controls/TrackballControls.js
  94. +52 −0 js/src/examples/lines/Line2.js
  95. +105 −0 js/src/examples/lines/LineGeometry.js
  96. +402 −0 js/src/examples/lines/LineMaterial.js
  97. +52 −0 js/src/examples/lines/LineSegments2.js
  98. +254 −0 js/src/examples/lines/LineSegmentsGeometry.js
  99. +4 −4 js/src/examples/renderers/CanvasRenderer.js
  100. +2 −2 js/src/examples/renderers/Projector.js
  101. +2 −10 js/src/extension.js
  102. +37 −0 js/src/geometries/EdgesGeometry.js
  103. +24 −0 js/src/geometries/LineGeometry.js
  104. +49 −0 js/src/geometries/LineSegmentsGeometry.js
  105. +86 −0 js/src/helpers/ArrowHelper.js
  106. +18 −5 js/src/jupyterlab-plugin.js
  107. +3 −4 js/src/lights/LightShadow.js
  108. +30 −0 js/src/materials/LineMaterial.js
  109. +4 −6 js/src/materials/Material.js
  110. +7 −7 js/src/objects/Blackbox.js
  111. +27 −27 js/src/objects/CloneArray.js
  112. +21 −0 js/src/objects/Line2.js
  113. +21 −0 js/src/objects/LineSegments2.js
  114. +9 −8 js/src/objects/Mesh.js
  115. +5 −5 js/src/objects/SkinnedMesh.js
  116. +27 −32 js/src/renderers/WebGLRenderer.js
  117. +10 −11 js/src/renderers/webgl/WebGLShadowMap.js
  118. +29 −21 js/src/textures/DataTexture.js
  119. +87 −0 js/src/textures/DataTexture3D.js
  120. +8 −8 js/src/textures/DepthTexture.js
  121. +21 −18 js/src/textures/ImageTexture.js
  122. +7 −7 js/src/textures/TextTexture.js
  123. +16 −0 js/src/version.js
  124. +12 −24 js/webpack.config.js
  125. +5 −0 jupyter-config/notebook.d/jupyter-threejs.json
  126. +2 −0 pyproject.toml
  127. +28 −9 pythreejs/_base/Three.py
  128. +11 −8 pythreejs/_base/renderable.py
  129. +87 −0 pythreejs/_base/uniforms.py
  130. +14 −0 pythreejs/_example_helper.py
  131. +20 −5 pythreejs/_version.py
  132. +28 −4 pythreejs/animation/AnimationAction.py
  133. +14 −0 pythreejs/controls/OrbitControls.py
  134. +62 −4 pythreejs/core/BufferGeometry.py
  135. +22 −4 pythreejs/core/Geometry.py
  136. +27 −17 pythreejs/core/Renderer.py
  137. +20 −1 pythreejs/enums.py
  138. +50 −21 pythreejs/pythreejs.py
  139. +6 −2 pythreejs/renderers/WebGLRenderer.py
  140. +2 −2 pythreejs/sage.py
  141. +27 −0 pythreejs/textures/DataTexture3D.py
  142. +157 −12 pythreejs/traits.py
  143. +0 −9 readthedocs.yml
  144. +6 −1 setup.cfg
  145. +45 −41 setup.py
  146. +30 −11 setupbase.py
36 changes: 36 additions & 0 deletions .binder/environment.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: pythreejs-binder

channels:
- conda-forge
- nodefaults

dependencies:
# runtimes
- nodejs >=12,!=13,<15 # prefer LTS
- pip
- python >=3.6,<3.10
- yarn <2
# packaging dependencies
- wheel
- setuptools
# dependencies
- ipydatawidgets >=1.1.1
- ipywidgets >=7.2.1
- numpy >=1.14
# clients
- jupyterlab >=3,<4
- jupyterlab-classic
# dev
- nbval
- pytest-check-links
# examples
- ipympl
- ipywebrtc
- matplotlib-base
- scikit-image
- scipy
# docs
- nbsphinx >=0.2.13
- nbsphinx-link
- sphinx >=1.5
- sphinx_rtd_theme
31 changes: 31 additions & 0 deletions .binder/postBuild
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
#!/usr/bin/env bash
set -eux

export PIP_DISABLE_PIP_VERSION_CHECK=1
export PYTHONUNBUFFERED=1
export PYTHONIOENCODING=utf-8

pushd js
jlpm --ignore-optional
popd

# build distribution
python setup.py sdist

pushd dist
python -m pip install \
-v \
--no-deps \
--no-build-isolation \
pythreejs*.tar.gz
popd

# build docs
pushd docs
make html
popd

# validate extensions
jupyter nbextension list
jupyter labextension list
python -m pip check || echo "uh oh"
235 changes: 235 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,235 @@
name: CI

on:
push:
branches: [master]
pull_request:
branches: '*'

env:
PIP_DISABLE_PIP_VERSION_CHECK: 1
PYTHONUNBUFFERED: 1
PYTHONIOENCODING: utf-8
CACHE_EPOCH: 0

defaults:
run:
shell: bash -l {0}

jobs:
build:
name: build
runs-on: ubuntu-latest
steps:
- name: Check out
uses: actions/checkout@v2
- name: Set up python
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Set up node
uses: actions/setup-node@v2
with:
node-version: 14.x
- name: Cache pip packages
uses: actions/cache@v1
with:
path: ~/.cache/pip
key: |
${{ env.CACHE_EPOCH }}-${{ runner.os }}-pip-build-${{ hashFiles('setup.py', 'pyproject.toml') }}
restore-keys: |
${{ env.CACHE_EPOCH }}-${{ runner.os }}-pip-build-
- name: Install installation dependencies
run: |
set -eux
python -m pip install -vv -U --user pip wheel setuptools
yarn --version || npm install -g yarn
- name: Install packaging dependencies
run: |
set -eux
python -m pip install -vv 'jupyterlab~=3.0'
- name: Pre-install node dependencies
run: |
set -eux
cd js
yarn --ignore-optional
- name: Build sdist
run: python setup.py sdist
- name: Build wheel
run: python setup.py bdist_wheel
- name: Collect and hash distributions
run: |
set -eux
cp js/lab-dist/jupyter-threejs-*.tgz dist
cd dist
sha256sum * | tee SHA256SUMS
- name: Upload distributions
uses: actions/upload-artifact@v2
with:
name: dist ${{ github.run_number }}
path: ./dist

docs:
name: docs
runs-on: ubuntu-latest
steps:
- name: Check out
uses: actions/checkout@v2
- name: Install apt dependencies
run: |
set -eux
sudo apt install pandoc
- name: Set up python
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install installation dependencies
run: |
set -eux
python -m pip install -vv -U --user pip wheel setuptools
- name: Set up node
uses: actions/setup-node@v2
with:
node-version: 14.x
- name: Install package and docs dependencies
run: |
set -eux
pip install -vv -U -e .[docs,examples,test] requests_cache
- name: Validate docs environment
run: |
set -eux
pip freeze
pip check
- name: Build docs
run: |
set -eux
cd docs
make html
- name: Upload docs
uses: actions/upload-artifact@v2
with:
name: docs ${{ github.run_number }}
path: ./docs/build
- name: Get current date
id: date
run: |
echo "::set-output name=year::$(date +'%Y')"
echo "::set-output name=week::$(date +'%U')"
- name: Cache links
uses: actions/cache@v1
with:
path: ./build/links
key: |
${{ env.CACHE_EPOCH }}-${{ runner.os }}-links-${{ steps.date.outputs.year }}-${{ steps.date.outputs.week }}
restore-keys: |
${{ env.CACHE_EPOCH }}-${{ runner.os }}-links-${{ steps.date.outputs.year }}-
${{ env.CACHE_EPOCH }}-${{ runner.os }}-links-
- name: Check links
run: |
set -eux
mkdir -p build/links/cache
pytest-check-links --check-links-cache --check-links-cache-name ./build/links/cache
test:
name: test ${{ matrix.os }}${{ matrix.python }} ${{ matrix.node }} ${{ matrix.lab }}
needs: [build]
runs-on: ${{ matrix.os }}-latest
strategy:
fail-fast: false
matrix:
os: [ubuntu, macos, windows]
python: [3.7, 3.8, 3.9, 3.10]
include:
- python: 3.7
dist: 'pythreejs*.tar.gz'
node: 14
lab: 2
- python: 3.8
dist: 'pythreejs*.whl'
node: 14
lab: 2
- python: 3.9
node: 16
dist: 'pythreejs*.whl'
lab: 3
- python: 3.10
dist: 'pythreejs*.whl'
lab: 3
- os: windows
py_cmd: python
- os: macos
py_cmd: python3
- os: ubuntu
py_cmd: python
steps:
- name: Check out
uses: actions/checkout@v2
- name: Set up python
uses: actions/setup-python@v2
with:
python-version: 3.8
- if: ${{ matrix.node }}
name: Set up node
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
- name: Download distributions
uses: actions/download-artifact@v2
with:
name: dist ${{ github.run_number }}
path: ./dist
- name: Install installation dependencies
run: |
set -eux
${{ matrix.py_cmd }} -m pip install -vv --user -U pip wheel setuptools
- name: Install package
run: |
set -eux
cd dist
${{ matrix.py_cmd }} -m pip install -vv ${{ matrix.dist }}
- name: Validate environment
run: |
set -eux
${{ matrix.py_cmd }} -m pip freeze
${{ matrix.py_cmd }} -m pip check
- if: ${{ matrix.lab }}
name: Install JupyterLab
run: |
set -eux
${{ matrix.py_cmd }} -m pip install -vv 'jupyterlab==${{ matrix.lab }}.*'
- name: Install test dependencies
# explicit file installs don't support extras, skimage brings most along
run: |
set -eux
${{ matrix.py_cmd }} -m pip install -vv nbval scikit-image ipywebrtc pytest-cov codecov matplotlib
- name: Run python tests
# remove the source directory to avoid surprises
run: |
set -eux
rm -rf pythreejs
${{ matrix.py_cmd }} -m pytest -vv -l --nbval-lax --current-env . --cov pythreejs --cov-report term-missing:skip-covered --no-cov-on-fail
- name: Upload coverage
run: |
set -eux
codecov
- name: Check notebook extension
run: |
set -eux
jupyter nbextension list
jupyter nbextension list 2>&1 | grep -ie "jupyter-threejs/extension.*enabled" -
- if: ${{ matrix.node }}
name: Install lab extension
run: |
set -eux
jupyter labextension install --no-build --debug ./dist/*.tgz @jupyter-widgets/jupyterlab-manager
- if: ${{ matrix.node }}
name: Build lab
run: |
set -eux
jupyter lab build --debug
- if: ${{ matrix.lab }}
name: Check lab extension
run: |
set -eux
jupyter labextension list
jupyter labextension list 2>&1 | grep -ie "jupyter-threejs.*enabled.*ok" -
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -6,6 +6,7 @@ dist/
build/
*.py[cod]
node_modules/
.vscode

# Compiled javascript
pythreejs/static/
@@ -30,5 +31,9 @@ htmlcov/

docs/source/_static/jupyter-threejs.js
docs/source/_static/three.js
docs/source/examples/img

js/lab-dist
js/package-lock.json
js/yarn.lock
pythreejs/labextension
19 changes: 19 additions & 0 deletions .readthedocs.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
version: 2
build:
os: ubuntu-22.04
tools:
python: "3.10"
nodejs: "18"
jobs:
pre_install:
# pip install is now not in-place, so we need to manually ensure autogen gets run
- cd js && npm install
python:
install:
- method: pip
path: .
extra_requirements:
- examples
- docs
conda:
environment: docs/environment.yml
35 changes: 0 additions & 35 deletions .travis.yml

This file was deleted.

Loading