public void LDiv(ref QPoint q) { QPoint qc = q; qc.Conj(); this.LMul(ref qc); }
// |b|=1 public void RDiv(ref QPoint q) { QPoint qc = q; qc.Conj(); qc.LMul(ref this); this = qc; }