Example #1
0
        public void LDiv(ref QPoint q)
        {
            QPoint qc = q;

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

            qc.Conj();
            qc.LMul(ref this);
            this = qc;
        }