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
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
//! Triangle vertex index.

use mint::Point3;

use crate::v7400::data::mesh::{
    ControlPointIndex, PolygonIndex, PolygonVertex, PolygonVertexIndex, PolygonVertices,
};

/// Triange vertex index.
#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
pub struct TriangleVertexIndex(usize);

impl TriangleVertexIndex {
    /// Creates a new `TriangleVertexIndex`.
    pub(crate) fn new(i: usize) -> Self {
        Self(i)
    }

    /// Returns the triange vertex index.
    pub fn to_usize(self) -> usize {
        self.0
    }

    /// Returns the triange vertex index.
    #[deprecated(since = "0.0.3", note = "Renamed to `to_usize`")]
    pub fn get(self) -> usize {
        self.to_usize()
    }

    /// Returns triangle index.
    pub fn triangle_index(self) -> TriangleIndex {
        TriangleIndex::new(self.0 / 3)
    }
}

/// Triangle vertices (this is arary of control point indices).
///
/// "Triangle vertex" means "index of control point".
#[derive(Debug, Clone)]
pub struct TriangleVertices<'a> {
    /// Source polygon vertices which can contain non-triangles.
    polygon_vertices: PolygonVertices<'a>,
    /// A map from triangle vertex to polygon vertex index.
    tri_pv_indices: Vec<PolygonVertexIndex>,
    /// A map from triangle index to polygon index.
    tri_poly_indices: Vec<PolygonIndex>,
}

impl<'a> TriangleVertices<'a> {
    /// Creates a new `TriangleVertices`.
    pub(crate) fn new(
        polygon_vertices: PolygonVertices<'a>,
        tri_pv_indices: Vec<PolygonVertexIndex>,
        tri_poly_indices: Vec<PolygonIndex>,
    ) -> Self {
        Self {
            polygon_vertices,
            tri_pv_indices,
            tri_poly_indices,
        }
    }

    /// Returns underlying polygon vertices.
    pub fn polygon_vertices(&self) -> PolygonVertices<'a> {
        self.polygon_vertices
    }

    /// Returns polygon vertex index corresponding to the given triangle vertex.
    pub fn polygon_vertex_index(&self, tri_vi: TriangleVertexIndex) -> Option<PolygonVertexIndex> {
        self.tri_pv_indices.get(tri_vi.to_usize()).cloned()
    }

    /// Returns polygon vertex corresponding to the given triangle vertex.
    pub fn polygon_vertex(&self, i: impl Into<IntoPvWithTriVerts>) -> Option<PolygonVertex> {
        i.into().polygon_vertex(self)
    }

    /// Returns control point index corresponding to the given triangle vertex.
    pub fn control_point_index(
        &self,
        i: impl Into<IntoCpiWithTriVerts>,
    ) -> Option<ControlPointIndex> {
        i.into().control_point_index(self)
    }

    /// Returns control point corresponding to the given triangle vertex.
    pub fn control_point(&self, i: impl Into<IntoCpiWithTriVerts>) -> Option<Point3<f64>> {
        self.control_point_index(i.into())
            .and_then(|cpi| self.polygon_vertices.control_point(cpi))
    }

    /// Returns the number of triangle vertices.
    pub fn len(&self) -> usize {
        self.tri_pv_indices.len()
    }

    /// Returns whether or not there are no triangle vertices.
    pub fn is_empty(&self) -> bool {
        self.tri_pv_indices.is_empty()
    }

    /// Returns an iterator of control point indices.
    pub fn iter_control_point_indices<'b>(
        &'b self,
    ) -> impl Iterator<Item = Option<ControlPointIndex>> + 'b {
        (0..self.len())
            .map(TriangleVertexIndex::new)
            .map(move |tri_vi| self.control_point_index(tri_vi))
    }

    /// Returns polygon index for the given triangle index.
    pub fn polygon_index(&self, tri_i: TriangleIndex) -> Option<PolygonIndex> {
        self.tri_poly_indices.get(tri_i.to_usize()).cloned()
    }

    /// Returns an iterator of triangle vertex indices.
    pub fn triangle_vertex_indices(&self) -> impl Iterator<Item = TriangleVertexIndex> {
        (0..self.len()).map(TriangleVertexIndex::new)
    }
}

/// Triangle index.
#[derive(Debug, Clone, Copy)]
pub struct TriangleIndex(usize);

impl TriangleIndex {
    /// Creates a new `TriangleIndex`.
    fn new(v: usize) -> Self {
        Self(v)
    }

    /// Returns the index.
    pub fn to_usize(self) -> usize {
        self.0
    }

    /// Returns the index.
    #[deprecated(since = "0.0.3", note = "Renamed to `to_usize`")]
    pub fn get(self) -> usize {
        self.to_usize()
    }
}

/// A type to contain a value convertible into polygon vertex.
///
/// This is used for [`TriangleVertices::polygon_vertex`], but not intended to
/// be used directly by users.
///
/// [`TriangleVertices::polygon_vertex`]:
/// struct.TriangleVertices.html#method.polygon_vertex
#[derive(Debug, Clone, Copy)]
pub enum IntoPvWithTriVerts {
    /// Polygon vertex.
    PolygonVertex(PolygonVertex),
    /// Polygon vertex index.
    PolygonVertexIndex(PolygonVertexIndex),
    /// Triangle vertex index.
    TriangleVertexIndex(TriangleVertexIndex),
    #[doc(hidden)]
    __Nonexhaustive,
}

impl IntoPvWithTriVerts {
    /// Returns polygon vertex.
    fn polygon_vertex(&self, triangle_vertices: &TriangleVertices<'_>) -> Option<PolygonVertex> {
        match *self {
            IntoPvWithTriVerts::PolygonVertex(pv) => Some(pv),
            IntoPvWithTriVerts::PolygonVertexIndex(pvi) => {
                triangle_vertices.polygon_vertices.polygon_vertex(pvi)
            }
            IntoPvWithTriVerts::TriangleVertexIndex(tri_vi) => triangle_vertices
                .polygon_vertex_index(tri_vi)
                .and_then(|pvi| triangle_vertices.polygon_vertices.polygon_vertex(pvi)),
            IntoPvWithTriVerts::__Nonexhaustive => panic!("`__Nonexhaustive` should never be used"),
        }
    }
}

impl From<PolygonVertex> for IntoPvWithTriVerts {
    fn from(i: PolygonVertex) -> Self {
        IntoPvWithTriVerts::PolygonVertex(i)
    }
}

impl From<&PolygonVertex> for IntoPvWithTriVerts {
    fn from(i: &PolygonVertex) -> Self {
        IntoPvWithTriVerts::PolygonVertex(*i)
    }
}

impl From<PolygonVertexIndex> for IntoPvWithTriVerts {
    fn from(i: PolygonVertexIndex) -> Self {
        IntoPvWithTriVerts::PolygonVertexIndex(i)
    }
}

impl From<&PolygonVertexIndex> for IntoPvWithTriVerts {
    fn from(i: &PolygonVertexIndex) -> Self {
        IntoPvWithTriVerts::PolygonVertexIndex(*i)
    }
}

impl From<TriangleVertexIndex> for IntoPvWithTriVerts {
    fn from(i: TriangleVertexIndex) -> Self {
        IntoPvWithTriVerts::TriangleVertexIndex(i)
    }
}

impl From<&TriangleVertexIndex> for IntoPvWithTriVerts {
    fn from(i: &TriangleVertexIndex) -> Self {
        IntoPvWithTriVerts::TriangleVertexIndex(*i)
    }
}

/// A type to contain a value convertible into control point index.
///
/// This is used for [`TriangleVertices::control_point_index`] and
/// [`TriangleVertices::control_point`], but not intended to be used directly by
/// users.
///
/// [`TriangleVertices::control_point_index`]:
/// struct.TriangleVertices.html#method.control_point_index
/// [`TriangleVertices::control_point`]:
/// struct.TriangleVertices.html#method.control_point
#[derive(Debug, Clone, Copy)]
pub enum IntoCpiWithTriVerts {
    /// Control point index.
    ControlPointIndex(ControlPointIndex),
    /// A value which is convertible into polygon vertex.
    IntoPolygonVertex(IntoPvWithTriVerts),
    #[doc(hidden)]
    __Nonexhaustive,
}

impl IntoCpiWithTriVerts {
    /// Returns control point index.
    fn control_point_index(
        &self,
        triangle_vertices: &TriangleVertices<'_>,
    ) -> Option<ControlPointIndex> {
        match *self {
            IntoCpiWithTriVerts::ControlPointIndex(cpi) => Some(cpi),
            IntoCpiWithTriVerts::IntoPolygonVertex(into_pv) => {
                into_pv.polygon_vertex(triangle_vertices).map(Into::into)
            }
            IntoCpiWithTriVerts::__Nonexhaustive => {
                panic!("`__Nonexhaustive` should never be used")
            }
        }
    }
}

impl<T: Into<IntoPvWithTriVerts>> From<T> for IntoCpiWithTriVerts {
    fn from(i: T) -> Self {
        IntoCpiWithTriVerts::IntoPolygonVertex(i.into())
    }
}

impl From<ControlPointIndex> for IntoCpiWithTriVerts {
    fn from(i: ControlPointIndex) -> Self {
        IntoCpiWithTriVerts::ControlPointIndex(i)
    }
}

impl From<&ControlPointIndex> for IntoCpiWithTriVerts {
    fn from(i: &ControlPointIndex) -> Self {
        IntoCpiWithTriVerts::ControlPointIndex(*i)
    }
}