Merge branch 'master' of git.ucc.asn.au:ipdf/code
[ipdf/code.git] / src / document.cpp
index 72a12c1..0b72a3e 100644 (file)
@@ -132,13 +132,39 @@ int Document::ClipObjectToQuadChild(int object_id, QuadTreeNodeChildren type)
                }
        case BEZIER:
                {
-               Rect child_node_bounds = TransformFromQuadChild({0,0,1,1}, type);
-               std::vector<Bezier> new_curves = m_objects.beziers[m_objects.data_indices[object_id]].ClipToRectangle(child_node_bounds);
                Rect obj_bounds = TransformToQuadChild(m_objects.bounds[object_id], type);
+               if (obj_bounds.x < 0)
+               {
+                       obj_bounds.w += obj_bounds.x;
+                       obj_bounds.x = 0;
+               }
+               if (obj_bounds.y < 0)
+               {
+                       obj_bounds.h += obj_bounds.y;
+                       obj_bounds.y = 0;
+               }
+               if (obj_bounds.x + obj_bounds.w > 1)
+               {
+                       obj_bounds.w += (1 - (obj_bounds.x + obj_bounds.w));
+               }
+               if (obj_bounds.y + obj_bounds.h > 1)
+               {
+                       obj_bounds.h += (1 - (obj_bounds.y + obj_bounds.h));
+               }
+               Rect child_node_bounds = TransformFromQuadChild(obj_bounds, type);
+               Rect clip_bezier_bounds;
+               clip_bezier_bounds.x = (child_node_bounds.x - m_objects.bounds[object_id].x) / m_objects.bounds[object_id].w;
+               clip_bezier_bounds.y = (child_node_bounds.y - m_objects.bounds[object_id].y) / m_objects.bounds[object_id].h;
+               clip_bezier_bounds.w = child_node_bounds.w / m_objects.bounds[object_id].w;
+               clip_bezier_bounds.h = child_node_bounds.h / m_objects.bounds[object_id].h;
+               std::vector<Bezier> new_curves = Bezier(m_objects.beziers[m_objects.data_indices[object_id]], child_node_bounds).ClipToRectangle(clip_bezier_bounds);
                for (size_t i = 0; i < new_curves.size(); ++i)
                {
-                       unsigned index = AddBezierData(new_curves[i]);
-                       m_objects.bounds.push_back(obj_bounds);
+                       Rect new_bounds = TransformToQuadChild(m_objects.bounds[object_id], type);
+                       new_bounds = TransformToQuadChild(new_curves[i].SolveBounds(), type);
+                       Bezier new_curve_data = new_curves[i].ToRelative(new_bounds);
+                       unsigned index = AddBezierData(new_curve_data);
+                       m_objects.bounds.push_back(new_bounds);
                        m_objects.types.push_back(BEZIER);
                        m_objects.data_indices.push_back(index);
                }

UCC git Repository :: git.ucc.asn.au