You are not logged in.
A new app tentatively titled: Area of Polygon by Drawing
Does the title make sense? It can also double as a "solving" tool if you know enough lengths/angles.
Converting back/forth between the mouse coords (in pixels) vs graph coords (which the user can vary) kept on going wrong, but I think it is good now.
Have a play, let me know how it goes.
"The physicists defer only to mathematicians, and the mathematicians defer only to God ..." - Leon M. Lederman
Offline
hi MathsIsFun,
Another great page. Well done!
Haven't found any bugs yet.
Question: When adding a new point, what is your criteron for where it is placed?
And: Do I have to move my points with the mouse or is there a way to move with arrow keys or even specify a pair of coordinates exactly.
I see, for example, that your default shape is a regular pentagon. Supposing I wanted a regular hexagon?
Bob
Children are not defined by school ...........The Fonz
You cannot teach a man anything; you can only help him find it within himself..........Galileo Galilei
Sometimes I deliberately make mistakes, just to test you! …………….Bob
Offline
Hi MIF;
A very good idea! I kind of like it.
I would like to have more digits.
In mathematics, you don't understand things. You just get used to them.
If it ain't broke, fix it until it is.
Always satisfy the Prime Directive of getting the right answer above all else.
Offline
New point: half way between first 2 points.
Good suggestions. I can't figure how to implement at the moment, but will note them down.
I would like to have more digits.
On your feet, or hands?
"The physicists defer only to mathematicians, and the mathematicians defer only to God ..." - Leon M. Lederman
Offline
Hi MIF;
On your feet, or hands?
Hmmmm, those are fine. What would be nice is a few more digits for the area and points.
In mathematics, you don't understand things. You just get used to them.
If it ain't broke, fix it until it is.
Always satisfy the Prime Directive of getting the right answer above all else.
Offline
I like it,but it cannot be moved left,right,up and down.
I am amazed to how many digits I was able to zoom in.
Last edited by anonimnystefy (2012-04-21 02:39:17)
Here lies the reader who will never open this book. He is forever dead.
Taking a new step, uttering a new word, is what people fear most. ― Fyodor Dostoyevsky, Crime and Punishment
The knowledge of some things as a function of age is a delta function.
Offline
I like it,but it cannot be moved left,right,up and down.
Click on left of drawing surface to "recenter" half way to right.
"The physicists defer only to mathematicians, and the mathematicians defer only to God ..." - Leon M. Lederman
Offline
I'll try that tomorrow.
Here lies the reader who will never open this book. He is forever dead.
Taking a new step, uttering a new word, is what people fear most. ― Fyodor Dostoyevsky, Crime and Punishment
The knowledge of some things as a function of age is a delta function.
Offline
Added an "edit" button so you can manually change all coords. (Use refresh for latest version)
Try putting in (4,6), (2,6), (2,4), (4,4), (4,2), (6,2), (6,4), (8,4), (8,6), (6,6), (6,8), (4,8) for a positive experience.
"The physicists defer only to mathematicians, and the mathematicians defer only to God ..." - Leon M. Lederman
Offline
Hi MIF;
That is a neat feature.
In mathematics, you don't understand things. You just get used to them.
If it ain't broke, fix it until it is.
Always satisfy the Prime Directive of getting the right answer above all else.
Offline
I am not sure what that is,but I think it is a:
Here lies the reader who will never open this book. He is forever dead.
Taking a new step, uttering a new word, is what people fear most. ― Fyodor Dostoyevsky, Crime and Punishment
The knowledge of some things as a function of age is a delta function.
Offline
Yes, anonimnystefy, A+
"The physicists defer only to mathematicians, and the mathematicians defer only to God ..." - Leon M. Lederman
Offline
A winner is me -.-"
Here lies the reader who will never open this book. He is forever dead.
Taking a new step, uttering a new word, is what people fear most. ― Fyodor Dostoyevsky, Crime and Punishment
The knowledge of some things as a function of age is a delta function.
Offline
New version 0.75
Linky (same as above) Area of Polygon by Drawing
Has a "Regular" button (to make it regular, of course). A bob bundy request.
Also includes a description of the polygon: regular, concave, complex. Let me know if it gets it wrong!
Also try to make a regular polygon without using the regular button
"The physicists defer only to mathematicians, and the mathematicians defer only to God ..." - Leon M. Lederman
Offline
Hi MIF;
Seems to be working nicely.
I use a formula involving determinants for the computation of areas. What do you use?
In mathematics, you don't understand things. You just get used to them.
If it ain't broke, fix it until it is.
Always satisfy the Prime Directive of getting the right answer above all else.
Offline
Hi bobbym
Is that the shoelace formula you are using?
Here lies the reader who will never open this book. He is forever dead.
Taking a new step, uttering a new word, is what people fear most. ― Fyodor Dostoyevsky, Crime and Punishment
The knowledge of some things as a function of age is a delta function.
Offline
Sorry, I can not even remember what day it is and you want me to remember what these formulas are called?
In mathematics, you don't understand things. You just get used to them.
If it ain't broke, fix it until it is.
Always satisfy the Prime Directive of getting the right answer above all else.
Offline
Did you try searching "shoelace formula" to see if that is the one?
Btw,today is 14/5/2012,Europian date format.
Here lies the reader who will never open this book. He is forever dead.
Taking a new step, uttering a new word, is what people fear most. ― Fyodor Dostoyevsky, Crime and Punishment
The knowledge of some things as a function of age is a delta function.
Offline
Heck no! That is most convoluted idea I have ever seen. I just plug them into a big matrix and let M get the determinant.
In mathematics, you don't understand things. You just get used to them.
If it ain't broke, fix it until it is.
Always satisfy the Prime Directive of getting the right answer above all else.
Offline
Plug what into a big matrix?
Here lies the reader who will never open this book. He is forever dead.
Taking a new step, uttering a new word, is what people fear most. ― Fyodor Dostoyevsky, Crime and Punishment
The knowledge of some things as a function of age is a delta function.
Offline
The coordinates.
In mathematics, you don't understand things. You just get used to them.
If it ain't broke, fix it until it is.
Always satisfy the Prime Directive of getting the right answer above all else.
Offline
What kind of matrix? What are the dimensions?
Here lies the reader who will never open this book. He is forever dead.
Taking a new step, uttering a new word, is what people fear most. ― Fyodor Dostoyevsky, Crime and Punishment
The knowledge of some things as a function of age is a delta function.
Offline
I use a formula involving determinants for the computation of areas. What do you use?
Same, really. Sum up (pt0.x * pt1.y - pt0.y * pt1.x) for successive pairs of points (including last to first). Need to divide by 2 at end.
Couldn't work out how to get area for complex shapes, though, so just say "complex".
"The physicists defer only to mathematicians, and the mathematicians defer only to God ..." - Leon M. Lederman
Offline
Sorry, I seemed to have dropped the determinant way in favor of some algorithm. This is the one I have in my notes right now. I was wondering what MIF is using
In mathematics, you don't understand things. You just get used to them.
If it ain't broke, fix it until it is.
Always satisfy the Prime Directive of getting the right answer above all else.
Offline
Does the same method work for complex polys?
Here lies the reader who will never open this book. He is forever dead.
Taking a new step, uttering a new word, is what people fear most. ― Fyodor Dostoyevsky, Crime and Punishment
The knowledge of some things as a function of age is a delta function.
Offline