473,500 Members | 1,963 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

App that manipulates graphics

Hello everyone,

I'm starting with new endeavour of writing Windows-based application
in C# that will manipulate graphic elements in a certain manner (I
will describe it briefly bellow). Being a seasoned developer in
general, I don't have any experience with what I'm about to start
implementing. What I'm looking for is name of technologies (even list
o acronyms will be a great start), references to books or articles and
may be some guidelines from knowledgeable people on where to start.

The application will do the following: taking a file with coordinates
of many dots it will render a map of a surface. Once map is rendered,
a user will be able to select different shapes (lines, triangles,
circles and likes) and draw them upon the map. All those shapes on the
map are not just images, their properties can be changed at any time,
they can be resized, shifted and deleted. The underlying map is not
just an image either, it will have attributes that will govern the
look of the map dynamically.

That's what I am trying to write. If you have any advice on what to
read and where to start in respect to .NET (C#), it would be greatly
appreciated.

Thank you for your time,
Yuriy Zubarev
Nov 15 '05 #1
3 2089
Because your app is relying heavily on graphics, I would consider using
managed DirectX 9 as it is much faster then drawing with GDI+
(System.Drawing).

Greetz,
-- Rob.

Yuriy Zubarev wrote:
Hello everyone,

I'm starting with new endeavour of writing Windows-based application
in C# that will manipulate graphic elements in a certain manner (I
will describe it briefly bellow). Being a seasoned developer in
general, I don't have any experience with what I'm about to start
implementing. What I'm looking for is name of technologies (even list
o acronyms will be a great start), references to books or articles and
may be some guidelines from knowledgeable people on where to start.

The application will do the following: taking a file with coordinates
of many dots it will render a map of a surface. Once map is rendered,
a user will be able to select different shapes (lines, triangles,
circles and likes) and draw them upon the map. All those shapes on the
map are not just images, their properties can be changed at any time,
they can be resized, shifted and deleted. The underlying map is not
just an image either, it will have attributes that will govern the
look of the map dynamically.

That's what I am trying to write. If you have any advice on what to
read and where to start in respect to .NET (C#), it would be greatly
appreciated.

Thank you for your time,
Yuriy Zubarev

Nov 15 '05 #2
I personally would rather use openGL than direct3d (I believe direct draw
has been excluded in dx9). As there is no 'official' binding to openGL with
c#, if you are interested take a look here:

http://csgl.sourceforge.net/

I'm not sure if your app is going to be 2d or 3d (it sounds 2d). Either way
you can use dx or opengl, as 2d is a subset of 3d.

----
Kemal Enver
u0**@dcs.shef.ac.uk
"Rob Tillie" <Ro********@student.tul.edu> wrote in message
news:O1**************@TK2MSFTNGP09.phx.gbl...
Because your app is relying heavily on graphics, I would consider using
managed DirectX 9 as it is much faster then drawing with GDI+
(System.Drawing).

Greetz,
-- Rob.

Yuriy Zubarev wrote:
Hello everyone,

I'm starting with new endeavour of writing Windows-based application
in C# that will manipulate graphic elements in a certain manner (I
will describe it briefly bellow). Being a seasoned developer in
general, I don't have any experience with what I'm about to start
implementing. What I'm looking for is name of technologies (even list
o acronyms will be a great start), references to books or articles and
may be some guidelines from knowledgeable people on where to start.

The application will do the following: taking a file with coordinates
of many dots it will render a map of a surface. Once map is rendered,
a user will be able to select different shapes (lines, triangles,
circles and likes) and draw them upon the map. All those shapes on the
map are not just images, their properties can be changed at any time,
they can be resized, shifted and deleted. The underlying map is not
just an image either, it will have attributes that will govern the
look of the map dynamically.

That's what I am trying to write. If you have any advice on what to
read and where to start in respect to .NET (C#), it would be greatly
appreciated.

Thank you for your time,
Yuriy Zubarev


Nov 15 '05 #3
In the terrarium app, they used directx also (8 in that time).
I would recommend DirectX 9, as it is the most used API (for games), and the
most highlevel.
In OpenGL, you have to create all objects like Vertex, Edge, Mesh, etc.
yourself.

Greetz,
-- Rob.

Kemal Enver wrote:
I personally would rather use openGL than direct3d (I believe direct
draw has been excluded in dx9). As there is no 'official' binding to
openGL with c#, if you are interested take a look here:

http://csgl.sourceforge.net/

I'm not sure if your app is going to be 2d or 3d (it sounds 2d).
Either way you can use dx or opengl, as 2d is a subset of 3d.

----
Kemal Enver
u0**@dcs.shef.ac.uk
"Rob Tillie" <Ro********@student.tul.edu> wrote in message
news:O1**************@TK2MSFTNGP09.phx.gbl...
Because your app is relying heavily on graphics, I would consider
using managed DirectX 9 as it is much faster then drawing with GDI+
(System.Drawing).

Greetz,
-- Rob.

Yuriy Zubarev wrote:
Hello everyone,

I'm starting with new endeavour of writing Windows-based application
in C# that will manipulate graphic elements in a certain manner (I
will describe it briefly bellow). Being a seasoned developer in
general, I don't have any experience with what I'm about to start
implementing. What I'm looking for is name of technologies (even
list
o acronyms will be a great start), references to books or articles
and may be some guidelines from knowledgeable people on where to
start.

The application will do the following: taking a file with
coordinates of many dots it will render a map of a surface. Once
map is rendered,
a user will be able to select different shapes (lines, triangles,
circles and likes) and draw them upon the map. All those shapes on
the map are not just images, their properties can be changed at any
time, they can be resized, shifted and deleted. The underlying map
is not just an image either, it will have attributes that will
govern the
look of the map dynamically.

That's what I am trying to write. If you have any advice on what to
read and where to start in respect to .NET (C#), it would be greatly
appreciated.

Thank you for your time,
Yuriy Zubarev

Nov 15 '05 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

12
2334
by: Sanjay | last post by:
hi, We are currently porting our project from VB6 to VB .NET. Earlier we used to make scale transformations on objects like pictureBox , forms etc.Now Such transformations are made on the...
5
27120
by: Charles A. Lackman | last post by:
Hello, I have created a complete PrintDocument and need to create an image from it. How is this done? e.Graphics.SmoothingMode = Drawing2D.SmoothingMode.HighQuality...
11
1167
by: Sanjay | last post by:
hi, We are currently porting our project from VB6 to VB .NET. Earlier we used to make scale transformations on objects like pictureBox , forms etc.Now Such transformations are made on the...
12
366
by: Sanjay | last post by:
hi, We are currently porting our project from VB6 to VB .NET. Earlier we used to make scale transformations on objects like pictureBox , forms etc.Now Such transformations are made on the...
0
7136
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
7018
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
1
6906
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
7397
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
1
4923
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
4611
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
3110
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
3106
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
672
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.