Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to remove shapes from filled SVG path

I have this fiddle : https://jsfiddle.net/thatOneGuy/1spn8nne/1/

This has two paths, for now, they are just rect but are actually complicated shape. I have used this code to create two rects with 'holes' in :

createRects(dataPointsPath2, 'blue');
createHoles(dataPointsCircle2);
createRects(dataPointsPath1, 'red');
createHoles(dataPointsCircle1);

What I need are the holes to be removed from the filled path so you can see the rect behind it.

How do I go about removing a shape (circle) from a filled path ?

EDIT

I have just realised, a clip path will probably work well for this, I'll try implement but if someone has any ideas I'd appreciate the help :)

like image 831
thatOneGuy Avatar asked Jul 29 '16 09:07

thatOneGuy


2 Answers

Here's one way to draw a rect with a hole in. It relies on the evenodd fill-rule. The circle is inside the rect it becomes a hole in the rect and the blue background shows through.

  <svg viewBox="0 0 250 250">
  <rect width="100%" height="100%" fill="blue"/>
    <path fill="#b4edb4" fill-rule="evenodd"  d="M230,230H8V13h223
	 V236z M 120 80 a 50 50 0 1 0 0.00001 0z"/>
</svg>
like image 72
Robert Longson Avatar answered Nov 15 '22 15:11

Robert Longson


@Robert Longson gave a nice answer but I was unable to duplicate it using my dataset and D3. So, thanks to @PaulLeBeau for his point about masks.

For the mask, you need a rect element, filled white for it to work. It uses this to know what to mask against(I think).

var thisMask = thisContainer.append("svg:mask")
    .attr("id", board + '_mask')

  thisMask.append("rect")
    .attr('x', 0)
    .attr('y', 0)
    .attr('width', "100%")
    .attr('height', "100%")
    .style('fill','white')

And in the same mask element, you need the rest of the shapes you want to remove from the path.

So in my case, I wanted a collection of circles :

thisMask.selectAll('.circle')
    .data(data)
    .enter()
    .append("circle")
    .attr('cx', function(d) {
      console.log('clippath', d)
      return d.x
    })
    .attr('cy', function(d) {
      return d.y
    })
    .attr('r', function(d) {
      return d.radius
    })

And that's it. I have updated the fiddle : https://jsfiddle.net/thatOneGuy/1spn8nne/4/

like image 25
thatOneGuy Avatar answered Nov 15 '22 17:11

thatOneGuy