Any procedure which identifies that portion of a picture which is either inside or outside a region is referred to as a clipping algorithm or clipping. The region against which an object is to be clipped is called clipping window.

learn more… | top users | synonyms

0
votes
0answers
5 views

BlueJ clipping off a few results

I have written my code to solve an ODE using Runge-Kutta method in BlueJ of a third order differential equation. However, not only is BlueJ showing all the results of the iterates as NaN, it is also ...
0
votes
0answers
33 views

D3 bar chart transition confusion

I am a D3 beginner (with scratchy training wheels) seeking some help with Clipping. I would like to see the bars at both ends of my graph transitioning in and out neatly, like Mike Bostock's "A Bar ...
0
votes
1answer
50 views

KineticJS : scaling issue while using custom clipFunc on 2x pixel aspect display

Kineticjs automatically adopts canvas size and whole graphics on Retina displays, so all looks sharp and clean without blurry pixelation. But thing goes wrong when I try to use custom clipping ...
1
vote
1answer
23 views

CAShapeLayer annoying clipping error

I am working on a map functionality. The map is built up out of multiple CAShapeLayers with CGPaths from calculated coordinates. I have a clipping problem. Look below on the screenshot where Alaska is ...
0
votes
0answers
19 views

Making “smooth” clipping (eg. using glsl shader)

I have a scroll view (similar to table view), which changes the opacity of the object that is going out of the scroll view area (eg. it fades out when scrolling out of the layer) and is also clipped ...
0
votes
1answer
46 views

How to identify which clip paths apply to a path or fill in PDF vector graphics?

I am trying to extract vector graphics from a PDF file and create corresponding SVG files. I am using SVGOutputDev (https://github.com/immateriel/pdf2svg/blob/master/SVGOutputDev.cc‎) with xpdf ...
1
vote
1answer
62 views

Mapping with D3: Feature clipping error in my spinning globe

I'm using D3 to create a world map with an orthographic projection that the user can "spin" with their mouse like they would a globe. I ran into some problems with jittery rendering in Firefox so I ...
2
votes
2answers
60 views

OpenGL - Clipping in 3D space

I've been trying for so long now to find how to do this: Clipping outside a defined area in OpenGL. I don't want to clip using the viewport or scissors btw. I've been searching like crazy and all I ...
0
votes
0answers
29 views

How to clip a section of webpage with all styles (similar to what clipboard.com did)

I've been a user of clipboard.com a clipping service which is about to be shut down, one of the killer features was that you can clip a section of the webpage with all its contents and styling, it was ...
0
votes
1answer
37 views

Play Video Inside Of CGPath or UIBezierPath

Is it possible to clip a video to a custom defined CGPath? I realize the UIBezierPath is really just a wrapper but I threw that in for familiarity purposes.
0
votes
1answer
41 views

Android: ScrollView with rounded corners. Child views bleeding out over corners

I have a scrollView with rounded corners. In the ScrollView is a LinearLayout that has the same drawable with rounded corners. This is all working fine. I have a scrolling container with rounded ...
0
votes
0answers
29 views

How to insert a point into a polygon in a correct position

I have two polygons, let's say like these ones: The original vertices are ordered counterclockwise. I find the intersections by iterating: foreach sideQ in Q foreach sideP in P ...
0
votes
1answer
27 views

How to implement my own graphics clipping?

I have a task for my Computer Graphics classes. I have to create an application with the following features: There is a dolphin floating on the screen, the user can move it around, The dolphin is ...
0
votes
1answer
58 views

Fabricjs - how to clip only selected object?

I have tried old and latest 1.1.13 version of fabricjs and none of them can apply clipTo function on selected object only. If there is only one object and need to clip it, it's ok but when there are ...
1
vote
1answer
140 views

Masking HTML Content with SVG Circle to remove any possible hit target

http://www.html5rocks.com/en/tutorials/masking/adobe/ If you do a simple hit test you can see that the clipping mask works in Chrome. $("image").on("click", function () { console.log("SVG mask ...
2
votes
0answers
119 views

Are there any alternatives to clipboard(www.clipboard.com). I was planning to use this to show clips of content embedded within my website [closed]

Are there any alternatives or similar tools to clipboard. I was planning to use this to clip & embed content from other sites and show them on my site with redirection on click on any link. But ...
8
votes
1answer
316 views

Finding the intersection of two 3D polygons

a.k.a. Polygon clipping algorithm in 3D a.k.a. Finding the collision manifold between 2 colliding polygons Most algorithms for polygon clipping are described in detail for 2D and described as being ...
1
vote
1answer
87 views

How to Clip content with rounded corners in Windows Store App

I've attempted to have a <Grid/> (with interactive stuff inside, not just an image) clipped with rounded corners (a <Border/> or a <Rectangle/>, whatever works). I've attempted ...
1
vote
0answers
56 views

masking multiple dynamic images in kineticjs using setClipFunc

I'm trying to add a simple rectangular mask to cover multiple images, the container method 'setClipFunc' looks like a winner http://kineticjs.com/docs/symbols/Kinetic.Container.php#setClipFunc but ...
0
votes
2answers
24 views

Calculate translateZ for CSS Transform

I've run into an issue when using the transform property. I have 1 simple DIV the fills the screen, and another DIV that sits on top of it. I'm applying the following transform to the DIV on top: ...
0
votes
0answers
52 views

DrawingContext anti-aliasing during clip

I need to piece together a quadrilateral from two different triangles that are clipped from their source image. I can not get rid of the seam between the triangles. The seam appears because during the ...
0
votes
0answers
44 views

Java clipping in a box

I'm fairly new to Java and would like to know if it would be possible to create a rectangle that, much like an ordinary rectangle can be drawn. The difference being that the rectangle should not be ...
0
votes
0answers
100 views

Overflow-y on scrolling div clipping nested div

I have a div which scrolls horizontally hooked to some buttons with jQuery. That is working fine, the problem is i have a nested div in the scrollable content which becomes clipped as it overlaps the ...
0
votes
1answer
22 views

What can I do to get the most out of png compression for an image with animation frames?

I'm looking to do some javascript powered animation via image clipping. Here's an example of what I'm talking about: http://www.def-logic.com/_dhtml/freejack/hero1.gif I know png uses a kind of ...
0
votes
0answers
76 views

OPEN GL ES 2.0, 3D objects clipping - iOS

I have developed an iPad app (in Objective-C) that allows me to load and visualize 3D objects (*. Obj) I used the ninevehGL library for that. And now I want to make cuts on those objects from other 3D ...
-1
votes
1answer
74 views

Three.js - Cube and sphere clipping strangely with plane

I'm having an issue where it looks like the cube and sphere are clipping with the plane. It seems to happen when I move the cube (using the keyboard) toward the back of the scene. It also happens when ...
1
vote
1answer
84 views

Boost geometry cartesian2d.hpp

I tried to do this clipping example using Boost Geometry in the example here But in the newest Boost library I can't find ... boost/geometry/geometries/cartesian2d.hpp Does anyone have any idea ...
0
votes
0answers
15 views

How to perform translation in path element which contains clipping concept

Please refer below SVG line chart zoomed Path with clipping concept. line exceeds the rectangle is cut-off(i.e.clipping). i have done zooming in that chart. <rect id="ChartArea" x="93" y="46" ...
0
votes
0answers
171 views

RelativeLayout android:clipChildren=“false” does not work: Animation will get clipped?

I am trying to implement a scrolling "newsbar". There is a RelativeLayout which fills the screen horizontally. It should contain many different news titles, contained by TextView objects, which I ...
0
votes
1answer
20 views

How can I prevent clipping of 2 backgrounds while using the CSS property Contain?

I want a background at the very top of the page and at the very bottom of the page. Using this CSS gives me the correct effect but it clips the images together at certain resolutions. Is there a way ...
0
votes
0answers
71 views

2d clipping time

i am searching for a fast 2d polygon clipping and found this page. because of this solution i tested c++ clipper and gpc what i used earlier. That are my 2 simple polygons ...
0
votes
1answer
40 views

Round top corners with Path

I'm trying to clip the top-left and the top-right corners of Canvas in java. I understand you can just use addRoundRect for all the corners, but I'm unsure what to do for only the top corners. This ...
1
vote
1answer
138 views

Metafile clipping rectangle

Following code makes quite some troubles: procedure TForm1.Button1Click(Sender: TObject); var dc : HDC; meta : TMetafile; metaCanv : TMetafileCanvas; cr : TRect; sz : TSize; begin ...
-3
votes
1answer
284 views

The Liang-barsky line clipping algorithim? [closed]

can anyone do a step by step answer of this question please not sure how it's done ? or what the inequalities would be ? i don't want just the answer i would like an explanation to help me answer ...
0
votes
0answers
58 views

Robot -clipping polygon

IN JAVA: i have to draw a polygon using mouse clicks and then make a selection over a polygon(ie clipping window) to clip the part outside of the clipping window i used robot to do that and save that ...
0
votes
1answer
90 views

Moving already Drawn shape on html5 canvas

I'm having trouble keeping one object on my canvas. The initially drawn box rendered it in the correct position, but it disappears when I drag it: var canvas = document.getElementById('canvas'), ...
1
vote
1answer
164 views

SVG Path Clipping issue in Chrome

I'm experience a clipping issue that seems to affect Chrome but not Firefox. Firefox: Chrome: This is my SVG tag with the definitions: <svg width="0" height="0" ...
1
vote
1answer
97 views

How can I get CGContextClip to include the border pixels?

I'm using a CGMutablePathRef to create an arbitrary poly so I can clip further drawing in my context using CGContextClip. This has the very annoying and unwanted behavior of being non-inclusive of ...
0
votes
1answer
178 views

how to get the near clipping plane coordinates in object space coordinate in OpenGL

I am rendering a cube with 8 vertices. As I rotate or get closer to the cube, some vertices might be clipped by the near clipping plane. However, for some reason in my problem I need to find the ...
0
votes
1answer
129 views

Imagemagick Text Clipping Path

I'd like to have a text clipped along a clipping path in Imagemagick. I have found a solution using pdflib (see use case 2) but want to have it purely in php/Imagick. Can someone point me in the right ...
2
votes
1answer
180 views

Simplify Polygon - Clipper Library Angus Johnson

I'm trying to simplify a complex polygon drawn on Google maps (API v3 Javascript). My goal is to receive an array of simple polygons. The problem is that some of the figures I draw could be analyzed ...
2
votes
1answer
171 views

How can I prevent WPF from clipping my image?

I am writing a WPF app that displays an image that is initially centered. The user can zoom in/out and move the image, which are implemented using ScaleTransform and TranslateTransform. That works ...
0
votes
1answer
195 views

How to clip the cell in a PdfPTable with iText?

I am creating a one column PdfPTable given a Rectangle, at a particilar absolute position. In this table, I need to add a collection of PdfPCells and show as much of the cell content as possible and ...
0
votes
0answers
57 views

clipping in gtk+/gtkmm

I already asked a while ago for a simple drawing area where I can draw simple items like boxes and lines. I started to use goocanvasmm, but I now all washed up at clipping some lines in a box. I could ...
0
votes
2answers
88 views

Problems clearing canvas when animating a clipping region

I'm trying to accomplish an effect similar to what you might see on the cartoon Chowder (example link) , where shapes serve as masking layers for a texture underneath that stays static. I've begun ...
0
votes
1answer
116 views

Fully functional drawing outside component bounds? setClip() usage and other

I have designed simple JPanel extension which I was expecting will able to draw outside it's bounds: public class JGlassPanel extends JPanel { @Override protected void paintBorder(Graphics g) { } ...
1
vote
0answers
169 views

MFC floating CDialog control clipping issue

I am making an SDI MDF application that uses a frameview to provid the user with a set of controls (buttons, editboxes and such). The view also owns a set of CDialogs used to desplay aditional ...
1
vote
1answer
155 views

How to create glClipPlanes matching the current projection matrix?

I'm rendering a collection of points in space which the user has manually rotated, panned, zoomed, and finally drawn a selection rectangle over a desired section. When they do this I call ...
0
votes
0answers
28 views

Clipping of labels of an axis when scrolling

Suppose you have a two-dimensional space where some data is displayed, e.g. according to a time and a way axis. The axes are labelled at all sides of the area. E.g., the time axis is horizontal, so ...
0
votes
0answers
43 views

How do I get scrolling/avoid clipping in wpf?

I want to have two widgets I want scrollable(a DataGrid inside a Grid and the current tab's TextBox inside a TabControl inside a Grid). I try placing them in a ScrollViewer but they never get to max ...

1 2 3 4 5 6