Draw Graph to a Second Degree Function C# Windows Form [closed] - c#

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
I have a Second Degree Function, what will be the best way to draw a graph to it using Windows Form?

1) Set range of arguments (for example -20<x<20)
2) compute values for this points (with accuracy 0.5)
3) Scale your graph to display resolution
4) Connect points by lines

Related

Capture primary image color [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
For example - I have many photos with grass or forest and they are simply "green".
Photo with sea and sky is blue, photo with snow is white.
I need something ( idea / algorithm ) to solve my problem but dont know how to make it fast and easy. (I prefer c# but java is good too).

Infra red light C# [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
Using c#, How can I identify infra red light (that my webcam would see). Will the necessary code differ depending on the make and model of my webcam?
A webcam can see a little IR and you can make it see more by removing the IR filter but it can only report it as... Red.
The whole chain of definition(s) of colour is aimed at the visual spectrum, only containing RGB values. You will see the IR as a 'false colour'.

How to crop a part of a image [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
In c# how can I crop a part of a picture like they do in minecraft
thanks in advance
Use one of the Graphics.DrawImage overloads that allows you to select just part of the source, for example http://msdn.microsoft.com/en-us/library/ms142040.aspx
Draws the specified portion of the specified Image at the specified location and with the specified size.

wpf 3D animation [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
Can I use WPF to import a 3D character and manually animate it like the skinned model
in XNA?
The short answer is no. There is no standard library in WPF which will support this.
The long answer is Yes; if you write all of the underlying code yourself.

How to converting BMP to AVI C# [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
I want to print screen 24 times in 1 second and then convert to AVI or VMW. İT's like video capture. is that possible ?
Check out the Expression Encoder SDK which allows you to do (live) video capturing from the screen in C#/.Net.

Categories