#!/usr/bin/env python # coding: utf-8 # In[ ]: import k3d import numpy as np position1 = [0.5, 1.0, 0.0] position2 = [-0.5, -1.0, 0.0] plot = k3d.plot() plot += k3d.texture_text('K3D Jupyter', position1, color=0xff0000, font_face='Arial', font_weight=300, size=2.0) plot += k3d.texture_text('K3D Jupyter', position2, color=0xff0000, font_face='Arial', font_weight=700, size=1.0) plot.display() # In[ ]: