Skip to content

Commit

Permalink
Removing references to open3d in the documentation.
Browse files Browse the repository at this point in the history
  • Loading branch information
LyceanEM committed May 29, 2024
1 parent b6f13d7 commit cfa742e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 7 deletions.
3 changes: 0 additions & 3 deletions docs/source/targets.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,6 @@ A collection of useful primatives for scattering and propagation modelling, incl

Targets is named so because it generates objects for the purpose of scattering rays and calculating their contribution to the channel.

The most general purpose function in Targets is :func:'source_cloud_from_shape' which can be used to mesh a shape with consistently spaced scattering or source points with normal vectors inherited from the surface normals of the solid.


.. automodule:: lyceanem.geometry.targets
:members: meshedHorn, meshedReflector

1 change: 1 addition & 0 deletions lyceanem/geometry/geometryfunctions.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ def tri_centroids(triangle_mesh):
def mesh_rotate(mesh, rotation, rotation_centre=np.zeros((1, 3), dtype=np.float32)):
"""
Rotate the provided meshio mesh about an arbitary center using either rotation vector or rotation matrix.
Parameters
----------
mesh
Expand Down
8 changes: 4 additions & 4 deletions lyceanem/geometry/targets.py
Original file line number Diff line number Diff line change
Expand Up @@ -234,9 +234,9 @@ def meshedReflector(majorsize, minorsize, thickness, grid_resolution, sides="all
Returns
-------
reflector : :class:`open3d.geometry.TriangleMesh`
reflector : meshio object
the defined cuboid
mesh_points : :class:`open3d.geometry.PointCloud`
mesh_points : meshio object
the scattering points, spaced at grid_resolution seperation between each point, and with normal vectors from
the populating surfaces
Expand Down Expand Up @@ -286,9 +286,9 @@ def meshedHorn(
Returns
-------
structure : :class:`open3d.geometry.TriangleMesh`
structure : meshio object
the physical structure of the horn
mesh_points : :class:`open3d.geometry.PointCloud`
mesh_points : meshio object
the source points for the horn aperture
"""
print("HIHIH")
Expand Down

0 comments on commit cfa742e

Please sign in to comment.