honeycomb_core/cmap/dim3/links/
one.rs1use crate::cmap::{CMap3, DartIdType, LinkError, NULL_DART_ID};
4use crate::geometry::CoordsFloat;
5use crate::stm::{Transaction, TransactionClosureResult, abort, atomically_with_err};
6
7impl<T: CoordsFloat> CMap3<T> {
9 pub(crate) fn one_link(
11 &self,
12 trans: &mut Transaction,
13 ld: DartIdType,
14 rd: DartIdType,
15 ) -> TransactionClosureResult<(), LinkError> {
16 self.betas.one_link_core(trans, ld, rd)?;
17 let (b3_ld, b3_rd) = (
18 self.beta_transac::<3>(trans, ld)?,
19 self.beta_transac::<3>(trans, rd)?,
20 );
21 if b3_ld != NULL_DART_ID && b3_rd != NULL_DART_ID {
22 self.betas.one_link_core(trans, b3_rd, b3_ld)?;
23 }
24 Ok(())
25 }
26
27 pub(crate) fn force_one_link(&self, ld: DartIdType, rd: DartIdType) -> Result<(), LinkError> {
32 atomically_with_err(|trans| self.one_link(trans, ld, rd))
33 }
34}
35
36impl<T: CoordsFloat> CMap3<T> {
38 pub(crate) fn one_unlink(
40 &self,
41 trans: &mut Transaction,
42 ld: DartIdType,
43 ) -> TransactionClosureResult<(), LinkError> {
44 let rd = self.beta_transac::<1>(trans, ld)?;
45 self.betas.one_unlink_core(trans, ld)?;
46 let (b3_ld, b3_rd) = (
47 self.beta_transac::<3>(trans, ld)?,
48 self.beta_transac::<3>(trans, rd)?,
49 );
50 if b3_ld != NULL_DART_ID && b3_rd != NULL_DART_ID {
51 if self.beta_transac::<1>(trans, b3_rd)? != b3_ld {
52 abort(LinkError::AsymmetricalFaces(ld, rd))?;
54 }
55 self.betas.one_unlink_core(trans, b3_rd)?;
56 }
57 Ok(())
58 }
59
60 pub(crate) fn force_one_unlink(&self, ld: DartIdType) -> Result<(), LinkError> {
65 atomically_with_err(|trans| self.one_unlink(trans, ld))
66 }
67}