# Examples from pyvista.core.pointset._PointSetBase.points_to_double
# ==================================================================

# Create a mesh that has points of the type `float32` and
# convert the points to `float64`.
import pyvista as pv
mesh = pv.Sphere()
mesh.points.dtype
_ = mesh.points_to_double()
mesh.points.dtype

# ----------------------------------------------------------------------
# Generated by sphinx-examples-as-code https://github.com/pyvista/sphinx-examples-as-code
