Lines Matching defs:view
526 View& view = _display.front();
527 _updateView(view);
581 void SPHatch::_updateView(View &view)
583 RenderInfo info = _calculateRenderInfo(view);
590 view.arenaitem->setChildTransform(info.child_transform);
591 view.arenaitem->setPatternToUserTransform(info.pattern_to_user_transform);
592 view.arenaitem->setTileRect(info.tile_rect);
593 view.arenaitem->setStyle(style);
594 view.arenaitem->setOverflow(info.overflow_initial_transform, info.overflow_steps,
598 SPHatch::RenderInfo SPHatch::_calculateRenderInfo(View const &view) const
602 Geom::OptInterval extents = _calculateStripExtents(view.bbox);
611 if (view.bbox && (hatchUnits() == UNITS_OBJECTBOUNDINGBOX)) {
612 tile_x *= view.bbox->width();
613 tile_y *= view.bbox->height();
614 tile_width *= view.bbox->width();
615 tile_height *= view.bbox->height();
616 tile_render_y *= view.bbox->height();
624 if (view.bbox && (hatchContentUnits() == UNITS_OBJECTBOUNDINGBOX)) {
625 content2ps = Geom::Affine(view.bbox->width(), 0.0, 0.0, view.bbox->height(), 0, 0);