#!/usr/bin/env python # coding: utf-8 # In[ ]: from k3d import K3D plot = K3D() view_matrix = ( (20.0, 0.0, 0.0, 10.0), (0.0, 20.0, 0.0, 10.0), (0.0, 0.0, 20.0, 10.0), (0.0, 0.0, 0,0, 1.0) ) plot += K3D.text(view_matrix, 'K3D Jupyter', color=0xff0000, font_face='Arial', font_weight='bold') plot.display()