#!/usr/bin/env python # coding: utf-8 # # Plotting a Single Object # # In the previous example we had a `Plot` and added objects to it. # It is however possible to automatically generate a plot for a created object, like: # In[ ]: import k3d k3d.points([0, 0, 0]) # This is not always a good idea, because a `Plot` object is created behind the scenes. # If there are many of them, showing complex objects, a lot of your browser's memory will be used. # Expected result: # ![A single point](assets/03_single_point.png "A plot with the cell result") # In[ ]: