Tagged Questions
4
votes
2answers
286 views
How to find out if two PolyLines intersect
I have a problem finding out if two PolyLines intersect.
Well the main objective is to compare last X and Y with the other PolyLine and find out if it's colliding aka intersecting with it.
There ...
3
votes
1answer
203 views
Algorithm to find intersections between polylines
Bentley-Ottmann algorithm works for finding intersections of set of straight lines. But I have lot of polylines:
Is there a way to find intersections of the set of polylines?
I'm figuring out, but ...
3
votes
3answers
1k views
Customize rounded corner radius of a WPF polyline
is it possible to set the corner radius of a WPF polyline to a custom value.
For a WPF border it is possible.
In my opinion, the polyline can only set StrokeLineJoin="Round", but not the radius:
...
2
votes
1answer
837 views
Why the Path and Polyline have different renderings in WPF?
Why the Path and Polyline have different renderings in WPF?
This is happening both in code and blend, maybe a I missing something or this
is just a anti aliasing effect.
<Window
...
2
votes
2answers
3k views
WPF Polyline relative point values and stretch for drawing a graph
I'm trying to create a pretty simple graphing component that consists of a series of Polylines within the same grid cell that represent graph lines. My strategy is to look at all the points in my ...
1
vote
1answer
375 views
WPF: Display polyline and points simultaneously
I have a list of line segments and each line segment contains a list of points. Being contained on the same canvas, I want to display each line segment and simultaneously mark each point location (ie ...
1
vote
1answer
210 views
Binding of a Polyline. What am I doing wrong?
I am trying what I thought a simple thing: drawing lines of a list of point.
If I put the list statically in the xaml of my window everything is ok.
If I do the bind, then nothing is displayed.
the ...
1
vote
1answer
1k views
Polyline using DataBinding and PointCollection for continuous update
first of all I describe my objective I want to achive. I want to visualise a continuous data stream (maximum 1000 values per second but could be reduced). This data stream should be visualised as a ...
1
vote
3answers
545 views
WPF: How to set offset to PolyLine
I have 3 PolyLines that have same geometry.
I would like to set offset to two of them, so they would appear right next to each other.
How can i do that?
thanx.
1
vote
0answers
523 views
WPF line, polyline fast rendering
I have a problem and found something about it here: http://stackoverflow.com/questions/1150060/how-to-draw-line-of-ten-thousands-of-points-with-wpf-within-0-5-second
We need something like this, but ...
1
vote
1answer
119 views
Adding controlpoints to polyline
I have an existing Polyline. How I can add a control point on it? In other words I need to add a control point on the LineSegment where I click with mouse. I use WPF.
Can anybody help me?
1
vote
2answers
997 views
How to move all coordonate from a WPF PolyLine object?
I have a graphic made dynamically with a polyline object. It produces something interesting but I would like to keep only the last 10 coordonates and once we have reach the 10th position, every ...
0
votes
0answers
29 views
wpf polyline multi brushes
Is it possible to set multi brushes for wpf polyline? For example I would like to draw triangle using polyline and set different color for each edge, or maybe there is other way to achieve it?
0
votes
1answer
65 views
Attach a polyline to shape
In a wpf in C# I draw a polyline on a canvas from the edge of a shape (rectangle) by the mouse move. I want to drag and drop then the rectangle with the polyline together as a united shape, In other ...
0
votes
1answer
93 views
How to animate polyline points using doubleanimation / pointanimation
Assuming I have a Polyline and I wish to move only the end of the Polyline from A to B using animation. How should I go about doing it?
p/s: I'll still prefer if the suggestion is for polyline and ...