import k3d
import matplotlib.pyplot as plt
import discretisedfield as df
p1 = (-10e-9, -5e-9, -2e-9)
p2 = (10e-9, 5e-9, -2e-9)
# region = df.Region(p1=p1, p2=p2)
p1 = (-10e-9, -5e-9, -2e-9)
p2 = (10e-9, 5e-9, 2e-9)
region = df.Region(p1=p1, p2=p2)
region.pmin
(-1e-08, -5e-09, -2e-09)
region.pmax
(1e-08, 5e-09, 2e-09)
region.edges
(2e-08, 1e-08, 4e-09)
region.centre
(0.0, 0.0, 0.0)
region.volume
8.000000000000001e-25
region.random_point()
(6.4678781719693765e-09, 5.479942032693809e-10, -5.080028830467005e-10)
repr(region)
'Region(p1=(-1e-08, -5e-09, -2e-09), p2=(1e-08, 5e-09, 2e-09))'
region == region
True
region != region
False
region == 5
False
region != 5
True
(0, 0, 0) in region
True
region.pmin in region
True
region.mpl()
fig = plt.figure()
ax = fig.add_subplot(111, projection="3d")
region.mpl(ax=ax)
ax.set_xlabel("A")
Text(0.5, 0, 'A')
region.mpl(figsize=(5, 5))
region.mpl(figsize=(5, 5), color="#00ff00")
region.mpl(figsize=(6, 5), color="#00ff00", multiplier=1e-6)
region.mpl(figsize=(6, 5), color="#00ff00", multiplier=1e-6, linewidth=5)
region.mpl(
figsize=(6, 6),
color="#00ff00",
multiplier=1e-6,
linewidth=5,
linestyle="dashed",
filename="region.pdf",
)
region.k3d()
Output()
region.k3d(color=756659)
Output()
region.k3d(color=756659, multiplier=1e-12)
Output()
screenshot vs snapshot, other commands
region.k3d(color=756659, multiplier=1e-12, wireframe=True)
Output()
plot = k3d.plot()
plot.display()
region.k3d(plot=plot)
Output()
plot.axes = ["A", "B", "C"]