forked from viamrobotics/rdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmesh.go
38 lines (32 loc) · 1.16 KB
/
mesh.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
package spatialmath
// This file incorporates work covered by the Brax project -- https://github.com/google/brax/blob/main/LICENSE.
// Copyright 2021 The Brax Authors, which is licensed under the Apache License Version 2.0 (the “License”).
// You may obtain a copy of the license at http://www.apache.org/licenses/LICENSE-2.0.
// Mesh is a set of triangles at some pose. Triangle points are in the frame of the mesh.
type Mesh struct {
pose Pose
triangles []*Triangle
}
// NewMesh creates a mesh from the given triangles and pose.
func NewMesh(pose Pose, triangles []*Triangle) *Mesh {
return &Mesh{
pose: pose,
triangles: triangles,
}
}
// Pose returns the pose of the mesh.
func (m *Mesh) Pose() Pose {
return m.pose
}
// Triangles returns the triangles associated with the mesh.
func (m *Mesh) Triangles() []*Triangle {
return m.triangles
}
// Transform transforms the mesh. As triangles are in the mesh's frame, they are unchanged.
func (m *Mesh) Transform(pose Pose) *Mesh {
// Triangle points are in frame of mesh, like the corners of a box, so no need to transform them
return &Mesh{
pose: Compose(pose, m.pose),
triangles: m.triangles,
}
}