Re: [sympy] Re: Gsoc-14 3-Dimensional Geometry.

2014-03-20 Thread Akshay
@certik @asmeurer I have made the changes you suggested. I have put everything that i thought of in the application

Re: [sympy] Re: Gsoc-14 3-Dimensional Geometry.

2014-03-18 Thread Akshay
@certik @asmeurer Could you please review my proposal at melange and post your comments as the application deadline is fast approaching? Here is the link to my proposal at wiki https://github.com/sympy/sympy/wiki/GSoC-2014-Application--Akshay--Geometry-Module. Thanks, Akshay -- You received

Re: [sympy] Re: Gsoc-14 3-Dimensional Geometry.

2014-03-17 Thread Akshay
@certik I have updated my proposal at https://github.com/sympy/sympy/wiki/GSoC-2014-Application--Akshay--Geometry-Module. Please take some time to review it. Thanks Akshay -- You received this message because you are subscribed to the Google Groups sympy group. To unsubscribe from this

Re: [sympy] Re: Gsoc-14 3-Dimensional Geometry.

2014-03-05 Thread Akshay
Hi Certik, I wrote a wiki page, Please take a look. https://github.com/sympy/sympy/wiki/GSoC-2014-Application--Akshay--Geometry-Module. -- You received this message because you are subscribed to the Google Groups sympy group. To unsubscribe from this group and stop receiving emails from

Re: [sympy] Re: Gsoc-14 3-Dimensional Geometry.

2014-03-05 Thread Ondřej Čertík
On Wed, Mar 5, 2014 at 9:30 AM, Akshay akshaynukal...@gmail.com wrote: Hi Certik, I wrote a wiki page, Please take a look. https://github.com/sympy/sympy/wiki/GSoC-2014-Application--Akshay--Geometry-Module. Thanks, I like the explicit examples. Put there a section with your estimate how long

Re: [sympy] Re: Gsoc-14 3-Dimensional Geometry.

2014-03-05 Thread Akshay
I have added the tentative timeline, Do have a look. -- You received this message because you are subscribed to the Google Groups sympy group. To unsubscribe from this group and stop receiving emails from it, send an email to sympy+unsubscr...@googlegroups.com. To post to this group, send

Re: [sympy] Re: Gsoc-14 3-Dimensional Geometry.

2014-03-05 Thread Ondřej Čertík
Thanks. Just curious --- why do you think you'll need 4 weeks to implement the Line class? The intersection should be just a matter of a simple formula: http://mathworld.wolfram.com/Line-LineIntersection.html On Wed, Mar 5, 2014 at 11:43 AM, Akshay akshaynukal...@gmail.com wrote: I have added

Re: [sympy] Re: Gsoc-14 3-Dimensional Geometry.

2014-03-05 Thread Akshay
I actually expected this question :).Anyway that was the formula for the intersection of 2 lines in 2-d but now we have both 2-d and 3-d and also apart from that there are segments and rays so we have to consider the intersection of line and line in 2-d and 3-d and line and ray in 2-d 3-d

Re: [sympy] Re: Gsoc-14 3-Dimensional Geometry.

2014-03-05 Thread Ondřej Čertík
On Wed, Mar 5, 2014 at 12:17 PM, Akshay akshaynukal...@gmail.com wrote: I actually expected this question :).Anyway that was the formula for the intersection of 2 lines in 2-d but now we have both 2-d and 3-d and also apart from that there are segments and rays so we have to consider the

Re: [sympy] Re: Gsoc-14 3-Dimensional Geometry.

2014-03-05 Thread Akshay
Only problem is this is not hard but tedious as there are a lot of permutations line , segment and rays(2-d and 3-d) and note that there are no ready made formulas for rays and segments unlike lines .Maybe his might not take the amount of time I mentioned ,If time is left I would like to

Re: [sympy] Re: Gsoc-14 3-Dimensional Geometry.

2014-03-04 Thread Ondřej Čertík
Hi Akshay, I think in general it is a good idea to be able to work with 3D geometric objects. Why don't you start by writing some very quick prototype, as part of your proposal. For example intersection of 2 lines in 3D, or a plane and a line. Write up the functions/classes necessary for that.

Re: [sympy] Re: Gsoc-14 3-Dimensional Geometry.

2014-03-04 Thread Akshay
@ondrej Thanks for the quick reply . As you pointed out I have been working on the prototype for past few days and for the intersection of two lines it looks something like this: a = Line(Point(1,2,3),Point(2,3,4)) b = Line(Point(5,5,5),Point(-8,-6,-3)) a.interection(b) = Point(-1.5, -0.5,

Re: [sympy] Re: Gsoc-14 3-Dimensional Geometry.

2014-03-04 Thread Ondřej Čertík
Hi Akshay, On Tue, Mar 4, 2014 at 12:28 PM, Akshay akshaynukal...@gmail.com wrote: @ondrej Thanks for the quick reply . As you pointed out I have been working on the prototype for past few days and for the intersection of two lines it looks something like this: a =

Re: [sympy] Re: Gsoc-14 3-Dimensional Geometry.

2014-03-04 Thread Christophe Bal
Hello. In your prototype, you have written : b.arbitrary_point('z') = Point(-13*z +5, -11*z+5, -8z+5) c=Line(Point(2,3), Point(3,5)) # Here the default value of z is taken as 0 Why don't you work with a symbolic variable z ? You will also have to take care of point in segment for example.

Re: [sympy] Re: Gsoc-14 3-Dimensional Geometry.

2014-03-04 Thread Akshay
c=Line(Point(2,3), Point(3,5)) # Here the default value of z is taken as 0 I meant that the z co-ordinate of the point is taken as 0. -- You received this message because you are subscribed to the Google Groups sympy group. To unsubscribe from this group and stop receiving emails from it,

Re: [sympy] Re: Gsoc-14 3-Dimensional Geometry.

2014-03-04 Thread Christophe Bal
Sorry for my message, I was drunk... ;-) 2014-03-04 21:32 GMT+01:00 Akshay akshaynukal...@gmail.com: c=Line(Point(2,3), Point(3,5)) # Here the default value of z is taken as 0 I meant that the z co-ordinate of the point is taken as 0. -- You received this message because you are