|
I need a software to draw simple geometry things like this:
or even better:
Do you know any software capable to draw these things easily? Extra points if it works on Linux
Started by Andrea Ambu on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at superuser):
Powerpoint or sketchup....
GeoGebra , it comes in multiple languages, it's easy to use, but powerful, it can be exported to LaTeX, SVG and other formats, it supports applets and other tools .
It's free, cross platform and open source.
You could try C.a.R.
|
|
Having some Geometry data and a Transform how can the transform be applied to the Geometry to get a new Geometry with it's data transformed ?
Ex: I Have a Path object that has it's Path.Data set to a PathGeometry object, I want to tranform the points ...
Started by Pop Catalin on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
One catch is that Combine only works if....
You can scan the PathGeometry list of figures and segments .
There are two things you have to consider:
Geometry inherits from Freezable, you can't modify the geometry object in-place if it's frozen.
|
|
Hello, my school maths are very rusty and I think this is a good opportunity to take advance of this community :D
I have two points (a line) and a rectangle, I would like to know how to calculate if the line intersects the rectangle, my first approach...
Started by Gelu on
, 12 posts
by 11 people.
Answer Snippets (Read the full thread at stackoverflow):
You should be able to do-PlaneIntersection.html
From my "Geometry" class:
public struct Line { public static Line Empty; private PointF enum Intersection....
So this is basic 3-D geometry.
If it's 2-D, then all lines are on the only plane .
|
Ask your Facebook Friends
|
What's the difference between mesh and geometry? Aren't they the same? i.e. collection of vertices that form triangles?
Started by tep on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
A curve is geometry....
A point is geometry, but it is not a mesh.
From Wikipedia :
Geometry and with properties of space
IMO a mesh falls under that criteria.
A mesh is simply a more complex shape.
Or a mixture of various polygons.
|
|
I want to solve geometry problems in online programming contests. But whenever I read them, I just find too difficult. Please suggest some books and resources which I can study computational geometry.
Started by avd on
, 8 posts
by 8 people.
Answer Snippets (Read the full thread at stackoverflow):
On....
And there's also first.
To solve basic geometry problems quickly, so that it runs within the time limits of the contest, you://mrmbdctg.freehostia.com/contest_Tipsforbeginner.html
A classic work: Computational Geometry in C .
|
|
A 'web designer' (and high school dropout) friend is now learning programming, but having a hard time because he doesn't know Algebra/Geometry too well and all the examples mentioned in almost programming books involves math.
Are there any good Algebra...
Started by Nimbuz on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at superuser):
Expect....
A third grader and a college , by Harold Jacobs .
The Math Forum content referred by nik is good for years, but covers a ton of basic material in an easy to read style.
There is a good introductory geometry and intermediate algebra .
|
|
How do I convert a FormattedText string into a geometry-based object?
I don't think this question requires much explanation, and I can't think if very many other details I could give ...
I just need to convert the FormattedText into something I can use...
Started by Giffyguy on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
The basic usage pattern is like so:
// Create sample formatted text"), FlowDirection.LeftToRight, new Typeface("Verdana"), 16, System.Windows.Media.Brushes.Black); // Build geometry object that represents the text....
The usual examples too.
|
|
Does anyone have some useful beginner tutorials and code snippets for playing with basic geometric shapes and geometric proofs in code?
In particular something with the ability to easily create functions and recursively draw them on the screen. Additional...
Started by Gordon Potter on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
If you're willing to use C++ I would recommend two libraries:
boost::GGL generic geometry library, the Computational Geometry....
Hope that helps
I guess OpenGL.
Tutorials you should be able to have fun with geometry any way you want.
|
|
If I construct a shape using constructive solid geometry techniques, how can I construct a wireframe mesh for rendering? I'm aware of algorithms for directly rendering CSG shapes, but I want to convert it into a wireframe mesh just once so that I can ...
Started by Martin on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
The basic idea is to generate a point cloud from the volumetric data available in the CSG model.
|
|
Hi,
Does anyone know any good book or web resource for geometric and mathematical fundamentals of augmented reality?
Thanks!
Started by niko on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Projective geometry, up to homogenious coordinates, planar homography 3d graphics Advanced image processing, blob detection SIFT/SURF/FAST Intermediate projective geometry: Essential and fundamental matrices, epipolar ....
Cross product.
|