{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# Combined Camera\n", "\n", "A combined camera allows you to easily switch between a perspective camera and an orthographic camera." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "from pythreejs import *\n", "from IPython.display import display" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "mesh1 = Mesh(SphereBufferGeometry(20, 16, 16), MeshPhysicalMaterial(color='red'), position=[-20, 0, 0])\n", "mesh2 = Mesh(SphereBufferGeometry(20, 16, 16), MeshPhysicalMaterial(color='green'), position=[20, 0, 0])" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "view_width = 600\n", "view_height = 400\n", "camera = CombinedCamera(position=[0, 0, 60], width=view_width, height=view_height)" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "key_light = PointLight(position=[-100, 100, 100])\n", "ambient_light = AmbientLight(intensity=0.4)\n", "scene = Scene(children=[mesh1, mesh2, key_light, ambient_light, camera])\n", "renderer = Renderer(scene=scene, camera=camera, controls=[OrbitControls(controlling=camera)],\n", " width=view_width, height=view_height)\n", "display(renderer)" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "camera.mode = 'orthographic'" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "camera.mode = 'perspective'" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.5.4" } }, "nbformat": 4, "nbformat_minor": 2 }