public void BoundingBoxTest()
        {
            var exp = new Rect(0, -1, 2, 2);

            Assert.AreEqual(exp, m_arrow.BoundingBox());
            exp = new Rect(-1, -2, 4, 4);
            Assert.AreEqual(exp, m_arrow.BoundingBox(1f));
        }