Tagged Questions

Vector graphics is the use of geometrical primitives such as points, lines, curves, and shapes or polygon(s), which are all based on mathematical equations, to represent images in computer graphics. Images are drawn at run-time from the information stored, and so vector images do not get distorted after zoom/resize etc.

learn more… | top users | synonyms

19
votes
9answers
3k views

Displaying vector graphics in a browser

I need to display some interactive (attaching with DOM listeners etc. and event handling) vector graphics in web site I am working on. There is a W3C recommendation for SVG though this format is still ...
18
votes
4answers
354 views

Point Renderings Slightly Off in Mathematica

The Mathematica code f := #1 + Sin[2 #1] &; inflectionPoints = Table[{x, f[x]}, {x, -Pi, Pi, Pi/2}]; stationaryPoints = Union[ Table[{x, f[x]}, {x, -2 Pi/3, Pi/3, Pi}], Table[{x, f[x]}, ...
18
votes
2answers
491 views

Are there any Android Drawable designers?

I would like to use more vector drawings in my Android applications. Providing images isn't as space efficient or as scalable as I would like it to be. Android provides a series of Drawable file ...
14
votes
2answers
1k views

Rendering SVG with OpenGL (and OpenGL ES)

I am currently investigating the possibility of rendering vector graphics from an SVG file using OpenGL and OpenGL ES. I intend to target Windows and Android. My ideal solution would be to have a ...
14
votes
6answers
11k views

SVG to Android Shape

I'm wondering how vector drawing in Android with the Shape class may resemble another vector drawing standard. Since Shape is a Drawable, and Drawables are usually defined as XML, it sounds a lot ...
14
votes
4answers
5k views

Getting R plots into LaTeX?

I'm a newbie to both R and LaTeX and have just recently found how to plot a standard time series graph using R and save it as a png image. What I'm worried about is that saving it as an image and then ...
10
votes
5answers
4k views

Vector graphics in Javascript?

One of the advantages of Flash/Flex is that you can use vector graphics (SVG), which is nice. I did a bit of searching around and came across this Javascript vector graphics library. It's pretty ...
8
votes
4answers
9k views

Drawing SVG in .NET/C#?

I'd like to generate an SVG file using C#. I already have code to draw them in PNG and EMF formats (using framework's standard class System.Drawing.Imaging.Metafile and ZedGraph). What could you ...
8
votes
4answers
7k views

Which is better and why? RaphaelJS or HTML5 Canvas?

I found a vector library on the Internet that even works with IE6! http://raphaeljs.com/index.html It's amazing. Now my question is it better than the upcoming HTML5 <canvas>? The only ...
8
votes
2answers
2k views

How to use EPS files in a WPF or Silverlight application?

I have a few images in EPS format which I would like to use in my WPF application. Is this possible? If not, is there a way to convert them to XAML so I can use them directly in WPF? I don't have a ...
8
votes
6answers
10k views

vector drawing canvas in GWT

Are there are decent implementations of a vector graphics canvas in GWT? I would like to be draw arbitrary shapes and have them react to user input (mouse in/out/click/etc). There are wrappers for ...
8
votes
9answers
1k views

Point Sequence Interpolation

Given an arbitrary sequence of points in space, how would you produce a smooth continuous interpolation between them? 2D and 3D solutions are welcome. Solutions that produce a list of points at ...
7
votes
4answers
463 views

Vector graphics library for Windows with C# bindings

For fun, I'd like to see if I can create a library that is a bit like a small subset of WPF: a managed template driven vector based graphics system. (I have some theories I'd like to test.) I am not ...
7
votes
1answer
2k views

Using vector graphics in iPhone games

I'm Flash/AS3 developer and I'm wondering how some iPhone developers use vector assets in their games. For example, "Lil' Pirates": this games looks like vector-based, it's zooming and unzooming ...
7
votes
2answers
5k views

Vector graphics in Android

I'm working on an application that displays someone else's database of images. The images they have are all vector graphics and can be converted to any format, however keeping them in a vector format ...
7
votes
4answers
1k views

Is DxScene the “WPF for Delphi”? Anyone used it?

I am playing with DxScene and VxScene: http://www.ksdev.com/dxscene/index.html It looks very nice and powerful: 3d accelerated vector graphics, cross plaform, nice effects, many 2d GUI controls ...
7
votes
0answers
605 views

dojox.gfx bounding box for Text and Group nodes

The documentation for getBoundingBox() in dojo says: Returns a bounding box of a shape. A text shape is a point-based object, so it doesn't define a bounding box. I don't get it. Any sane ...
7
votes
10answers
6k views

.Net CAD vector graphics library

What is a good .Net vector graphics library that can be used for CAD like applications, and has a reasonable set of features specific for this type of applications, like computational functions (area, ...
6
votes
2answers
113 views

Overlapped Mesh lines in ContourPlot3D

I have a problem with rendering of Mesh lines on a 3D surface produced by ContourPlot3D in Mathematica 7.0.1: p=ContourPlot3D[x^4+y^4+z^4-(x^2+y^2+z^2)^2+3(x^2+y^2+z^2)==3, {x, -2,2}, {y, -2, ...
6
votes
4answers
201 views

Can a PDF be converted to a vector image format that can be printed from .NET?

We have a .NET app which prints to both real printers and PDF, currently using PDFsharp, although that part can be changed if there's a better option. Most of the output is generated text or images, ...
6
votes
4answers
3k views

HTML5 Canvas Vector Graphics?

Please tell me what libraries for drawing and handling of vector graphics within HTML5 Canvas do you know? Thank you!!!
6
votes
3answers
3k views

Finding the centroid of a polygon?

I have tried: for each vertex, add to total, divide by number of verities to get center. I'v also tried: Find the topmost, bottommost -> get midpoint... find leftmost, rightmost, find midpoint. Both ...
6
votes
4answers
3k views

What is the best way of converting SVG file into Raphaël?

I'm trying to open simple vector graphics using Raphaël JS and I can't find any converter that would do the whole job. Is there any way to transfer vector graphics (SVG or anything from Illustrator, ...
6
votes
1answer
799 views

Bezier Algoritms - an algorithm for inserting points

I'm looking for an algorithm to insert a new control point on a bezier curve, without deforming: did anybody knows a library or reference for bezier algorithms (insertion, optimize, de Casteljau ...
6
votes
3answers
1k views

2D vector modelling for game development

Making my Asteroids clone (in C) I've rather fallen in love with vector-based entities, but I've simply coded them in as x,y-point arrays. That's been fine for something like Asteroids, but what ...
5
votes
2answers
132 views

Vector graphics library for Common Lisp

Could someone suggest a good library for vector graphics? Several libraries support drawing shapes, what I need is a library that can save to a vector format. edit: I must admit I didn't do enough ...
5
votes
5answers
195 views

Sort points by angle from given axis?

How can I sort an array of points/vectors by counter-clockwise increasing angle from a given axis vector? For example: If 0 is the axis vector I would expect the sorted array to be in the order 2, ...
5
votes
3answers
169 views

Efficient point inside rectangle boundaries search

I'm working on a vector map editor and I have a set of elements, each of which specifies its bounding box within the view. As the mouse moves I want to highlight the first element whose bounding box ...
5
votes
4answers
1k views

Rendering Vector Graphics in OpenGL?

Is there a way to load a vector graphics file and then render it using OpenGL? This is a vague question as I don't know much about file formats for vector graphics. I know of SVG, though. Turning it ...
5
votes
1answer
238 views

html font/vector graphics question

what's the best way to present a vector/font in html?
5
votes
3answers
2k views

WPF Performance: Displaying thousands of Paths / Shapes on a Canvas

I'm currently developing a visualization tool that draws WPF shapes such as paths, ellipses etc. on a Canvas. I've already implemented a virtualized approach where Shapes are being destroyed and ...
5
votes
3answers
3k views

Using a XAML file as a vector Image Source

I would like to be able to use vector graphics, preferably defined in XAML, as the Source of an Image control, just like I can currently use a raster image like a PNG. That way I could easily mix and ...
5
votes
2answers
843 views

XAML Vector to Illustrator or similar

I can easily enough go from Adobe Illustrator and make a XAML file via the XPS Virtual Printer, but is there any way to import Vector graphics defined in XAML into Adobe Illustrator to continue ...
4
votes
2answers
93 views

Using Html5 / Javascript graphics in some graphic editor

I got some graphic design that was made using JavaScript / Html5 Canvas. Take a look here: http://yeda.us/js/logos.js now, i need to give this graphic element to a graphic designer in some format he ...
4
votes
1answer
86 views

Is it better to use TFloatPoint or TFixedPoint in GR32?

For building a scene graph a decision needs to be made between using TFixedPoint and TFloatPoint for all geometries and math. GR32 uses both Fixed and Float. Why are there two point types in GR32? ...
4
votes
2answers
286 views

How to draw graphics as efficiently as possible in WPF

I am creating a tool which relies heavily on graph-node trees. The current implementation is done in Java and I'm porting it to a generic code-base on C#, so it can be used by various rendering ...
4
votes
3answers
510 views

Vector graphics flood fill algorithms?

I am working on a simple drawing application, and i need an algorithm to make flood fills. The user workflow will look like this (similar to Flash CS, just more simpler): the user draws straight ...
4
votes
1answer
139 views

outline vectorshape algorithm

consider the red line to be given as a sequence of points I'm looking for an algorithm to create the outlines of the thick black shape (also as a sequence of points) such that they are ordered ...
4
votes
3answers
2k views

drawing centered arcs in raphael js

I need to draw concentric arcs of various sizes using raphael.js. I tried to understand the code behind http://raphaeljs.com/polar-clock.html, which is very similar to what I want, but, whithout ...
4
votes
3answers
848 views

icons for WPF application

It's recommended to use vector images in WPF application because of its scalability. Where I can find a free icons in vector format?
4
votes
1answer
198 views

What are some of the best ways to plot/draw vector graphics on a HTML page?

I'm trying out some dynamic web page background generation using lines and text. Take a look at my demo at http://74er.net/labs/lines.html (just focus on the yellow line). It's a lame and ...
4
votes
3answers
589 views

Draw shapes or images on a curved path

I am looking for a drawing library or code examples to draw images or vector shapes repeated along a path which could be curved. I found a cocoa library which is what I am looking for ...
4
votes
2answers
1k views

Interactive SVG - Learning Resources?

Has anyone any reources for learning how to implement SVG with php/mysql (and possibly with php-gtk)? I am thinking of making a top-down garden designer, with drag and drop predefined elements (such ...
3
votes
3answers
30 views

How to set a stroke-width:1 on only certain sides of SVG shapes?

Setting a stroke-width: 1 on a <rect> element in SVG places a stroke on every side of the rectangle. How does one place a stroke width on only three sides of an SVG rectangle?
3
votes
2answers
154 views

Putting an .ai or .svg file on the web, without Flash

So here's the scenario: I have an 800kb Adobe Illustrator file -- it's a topdown diagram of of a mall, with each individual shop marked with some text. Metadata showing square footage, availability, a ...
3
votes
1answer
340 views

3D Transformations on a Quartz2D path — Drawing Application

I'm in the planning stage of writing a Cocoa drawing application (for Mac, not iOS), and I'm trying to discern whether one of my features is technically possible via any of the drawing frameworks. Any ...
3
votes
1answer
466 views

projected surface normal vector onto xy plane

i have a plane whose equation is ax+by-z+d=0. hence, its normal vector (a,b-1). Now, i need to project my vector to xy plane in order to compute direction of it from the North axis (i guess it is Y ...
3
votes
1answer
799 views

XAML Icons - How to use?

I have some vector graphic files in XAML format and I would like to use them as icons/buttons in an Silverlight application. The approach I would have preferred is to use an Image control and set its ...
3
votes
1answer
166 views

WPF library or tool for room design

This is the update for My question: WPF 2d vector-graphics library. I need some WPF (or WinForms) library for 2D room design (not living room, but room with some technical equipment). Required ...
3
votes
1answer
193 views

aliasing problem

the code below draws two vertical lines on a canvas. these lines appear to be of different thickness on the screen although they are the same in code. i am tying to find a way to make them look as ...

1 2 3 4 5 6