Re: [brlcad-devel] GSoC 2015 update (X3D importer)

2015-08-21 Thread Djimeli Konrad
Hello Daniel I have submitted 3 updated patches x3d_importer_v2.patch , x3d_importer_manual.patch

Re: [brlcad-devel] GSoC 2015 update (X3D importer)

2015-08-17 Thread Daniel Roßberg
2015-08-17 13:50 GMT+02:00 Djimeli Konrad : > > > On 17 August 2015 at 09:03, Daniel Roßberg > wrote: >> Konrad, >> >> What does the standard say about the unit used in X3D? > > According to X3D Unit Specification Updates the standard unit for length is > meters. Aha, then there is really a facto

Re: [brlcad-devel] GSoC 2015 update (X3D importer)

2015-08-17 Thread Djimeli Konrad
On 17 August 2015 at 09:03, Daniel Roßberg wrote: > Konrad, > > What does the standard say about the unit used in X3D? According to X3D Unit Specification Updates the s

Re: [brlcad-devel] GSoC 2015 update (X3D importer)

2015-08-17 Thread Daniel Roßberg
Konrad, What does the standard say about the unit used in X3D? You could send us your g-x3d.c file, e.g. via this mailing list. Maybe someone has an idea how to fix the export. Regards, Daniel 2015-08-16 20:52 GMT+02:00 Djimeli Konrad : > Hello Sean and Daniel > > I have scaled all the poi

Re: [brlcad-devel] GSoC 2015 update (X3D importer)

2015-08-16 Thread Djimeli Konrad
Hello Sean and Daniel I have scaled all the points by 1000 in order regulate the size of the objects and also made minor improvement to the x3d-g importer code. According to my GSoC proposal I am supposed to have started working on the g-x3d exporter, which is why I have been studying the code

Re: [brlcad-devel] GSoC 2015 Midterm Summary

2015-07-03 Thread Shubham Chauhan
Here's my midterm summary http://brlcad.org/wiki/User:MeShubham99/GSoc15/Midterm_Summary and the logs http://brlcad.org/wiki/User:MeShubham99/GSoc15/log_development On Sat, Jul 4, 2015 at 12:21 AM, Ilinca Andrei wrote: > My midterm summary can be found here: > http://brlcad.org/wiki/User:Andrei

Re: [brlcad-devel] GSoC 2015 Midterm Summary

2015-07-03 Thread Ilinca Andrei
My midterm summary can be found here: http://brlcad.org/wiki/User:Andrei.ilinca24/logs#Midterm_Evaluation_Period On Fri, Jul 3, 2015 at 9:45 PM, Hitesh Sofat wrote: > There is my summary regarding Midterm. > > https://hiteshkumarsofat.wordpress.com/gsoc-midterm-summary/ > > > -- > Hitesh Sofat

Re: [brlcad-devel] GSoC 2015 Midterm Summary

2015-07-03 Thread Hitesh Sofat
There is my summary regarding Midterm. https://hiteshkumarsofat.wordpress.com/gsoc-midterm-summary/ -- Hitesh Sofat hiteshkumarsofat.wordpress.com (Life is a game & winner is not defined, Think about present because future is not defined, unexpected things make the game interesting, if everyt

Re: [brlcad-devel] GSoC 2015 Midterm Summary

2015-07-03 Thread Deepak Sharma
Mine midterm summary Blog : https://deekysharma.wordpress.com/2015/07/01/gsoc-mid-term/ Logs : http://brlcad.org/wiki/User:Deekaysharma/logs -- Cheers! Deepak Kumar Sharma Blog: http://deekysharma.wordpress.com " Mistakes are proof that you are trying " ---

Re: [brlcad-devel] GSoC 2015 Midterm Summary

2015-07-03 Thread Vasco Alexandre da Silva Costa
You can get my summary here: http://brlcad.org/wiki/User:Vasco.costa/MidtermSummary2015 On Fri, Jul 3, 2015 at 7:11 PM, Brad Hollister wrote: > Hi, > > You can find a midterm summary and other relevant info here: > > http://brlcad.org/wiki/User:Bhollister/MidtermSummary2015 > > Regards, > Brad >

[brlcad-devel] GSoC 2015 Midterm Summary

2015-07-03 Thread Brad Hollister
Hi, You can find a midterm summary and other relevant info here: http://brlcad.org/wiki/User:Bhollister/MidtermSummary2015 Regards, Brad -- Don't Limit Your Business. Reach for the Cloud. GigeNET's Cloud Solutions provi

Re: [brlcad-devel] GSoC 2015 update (X3D importer)

2015-06-30 Thread Djimeli Konrad
Hello Daniel Thanks for your observations I would find time to work on those issues, as I am presently writing my exams. Cheers! Konrad -- Don't Limit Your Business. Reach for the Cloud. GigeNET's Cloud Solutions provide

Re: [brlcad-devel] GSoC 2015 update (X3D importer)

2015-06-30 Thread Daniel Roßberg
Konrad, I've tested your patch and was able to compile the sources and run the program. To compile it I needed to install additional packages (libxml2 was already installed): libglew_dev and libmozjs185-* Then I build and run the x3d-g program with a test file from http://www.instantreality.org/d

Re: [brlcad-devel] GSoC 2015 update (X3D importer)

2015-06-28 Thread Djimeli Konrad
I just want to say that FreeWRL code does not beak the BRL-CAD build process as I was able to rework it so it depends only Libxml2 which is needed for parsing x3d xml files and so the cmake would check for Libxml2 before trying to compile the parser.

Re: [brlcad-devel] GSoC 2015 update (X3D importer)

2015-06-28 Thread Djimeli Konrad
Hello As an update of what I have been able to do so far. I have extracted the parsing bits of FreeWRL from which I generate a shared library, used by the X3D parser. This entailed reworking the FreeWRL code to make use of cmake as oppose to autotool which it relies on by default and I also implem

Re: [brlcad-devel] GSoC 2015 update (X3D importer)

2015-05-28 Thread Christopher Sean Morrison
On May 28, 2015, at 7:52 PM, Djimeli Konrad wrote: > I have successfully generated a shared library from src/lib of the FreeWRL > source code with cmake, giving me the ability to compile FreeWRL without most > of its dependencies but so far it still depends on opengl and libxml. Given > that

Re: [brlcad-devel] GSoC 2015 update (X3D importer)

2015-05-28 Thread Djimeli Konrad
I have successfully generated a shared library from src/lib of the FreeWRL source code with cmake, giving me the ability to compile FreeWRL without most of its dependencies but so far it still depends on opengl and libxml. Given that some parts of the parser uses GL defined types, I would have to

Re: [brlcad-devel] GSoC 2015 Schedule

2015-05-14 Thread Vasco Alexandre da Silva Costa
Thanks! Will do! On Thu, May 14, 2015 at 6:43 AM, Christopher Sean Morrison wrote: > > On May 13, 2015, at 10:20 PM, Vasco Alexandre da Silva Costa < > vasco.co...@gmail.com> wrote: > > > Hello, > > I got notified that I got a paper accepted at the CGI'15 conference. I > should be presenting it

Re: [brlcad-devel] GSoC 2015 Schedule

2015-05-13 Thread Christopher Sean Morrison
On May 13, 2015, at 10:20 PM, Vasco Alexandre da Silva Costa wrote: > Hello, > I got notified that I got a paper accepted at the CGI'15 conference. I should > be presenting it in the week of June 23. So I will be less available on that > week but there should be no major impact in the schedul

[brlcad-devel] GSoC 2015 Schedule

2015-05-13 Thread Vasco Alexandre da Silva Costa
Hello, I got notified that I got a paper accepted at the CGI'15 conference. I should be presenting it in the week of June 23. So I will be less available on that week but there should be no major impact in the schedule I planned for BRL-CAD. I have no other conference papers in submission at this

Re: [brlcad-devel] GSoC 2015 update (X3D importer)

2015-05-11 Thread Christopher Sean Morrison
On May 11, 2015, at 11:34 PM, Djimeli Konrad wrote: > Hello Daniel > > So far I have been working on integrating the FreeWrl library into > BRL-CAD, and I have not yet made any tangible progress as I have not been > able to get it to compile and run within BRL-CAD. This is due to th

[brlcad-devel] GSoC 2015 update (X3D importer)

2015-05-11 Thread Djimeli Konrad
Hello Daniel So far I have been working on integrating the FreeWrl library into BRL-CAD, and I have not yet made any tangible progress as I have not been able to get it to compile and run within BRL-CAD. This is due to the fact that FreeWRL depends on autotools, which I am reworking to cm

Re: [brlcad-devel] GSoC 2015 selections announced!

2015-04-28 Thread Djimeli Konrad
I am glad to have been selected for the Google summer of code under BRL-CAD. I am presently working on fulfilling the preliminary requirements and I hope to work closely with my mentor and other members of the community to make the summer as awesome as possible. Thanks Konrad -

Re: [brlcad-devel] GSoC 2015 selections announced!

2015-04-28 Thread Ilinca Andrei
Hi, Thank you for accepting my proposal for the Google Summer of Code 2015, I'm very excited and thrilled to be part of a real world, larger scale project and I'm very grateful to BRL-CAD for this opportunity! I didn't know what it takes to get selected to a GSoC and I was constantly stressing mys

[brlcad-devel] GSoC 2015 selections announced!

2015-04-27 Thread Christopher Sean Morrison
Our GSoC 2015 participants were announced earlier today! I’m excited by a number of projects this year, which I admit is part of the reason we’ve accepted more than originally planned. The short summary is geometry converters for OpenSCAD, X3D, and Povray; web infrastructure enhancements to

Re: [brlcad-devel] GSOC 2015 proposal revision

2015-04-25 Thread Jeff Fu
Sorry for my late response. Really thanks for your suggestions. I have sent an email through Linuxcnc mailing-list to Sebastian and left a comment in Melange about my recent revision. I will response later comments directly through Melange :-) On Fri, Apr 24, 2015 at 1:22 AM, Christopher Se

Re: [brlcad-devel] GSOC 2015 proposal revision

2015-04-24 Thread Christopher Sean Morrison
FYI, it’s more helpful if responses to Melange comments are actually made in Melange where the questions were posted. Otherwise, they risk being overlooked and in Melange it gives the impression that the questions were ignored. Moreover, mentors for associate orgs may not even necessarily be

[brlcad-devel] GSoC 2015

2015-04-22 Thread Tawhid Hannan
Hi, I'm unsure how the GSoC proposal commenting works - so this message is just to confirm that I've replied to the questions asked on my proposal. Thanks, Tawhid Hannan -- BPM Camp - Free Virtual Workshop May 6th at 10a

[brlcad-devel] GSOC 2015 proposal revision

2015-04-21 Thread Jeff Fu
Hi Sean, Really thanks for your comment on my proposal. I have revised my schedule of my project according to your suggestions. I scheduled 5 hours for coding during the first week and 20 hours for the week 2-3. I also added 5 extra coding hours for the rest of coding period to compensate fo

Re: [brlcad-devel] GSoC 2015 proposal

2015-04-20 Thread Christopher Sean Morrison
On Apr 20, 2015, at 5:44 PM, Tanuj kr Aasawat wrote: > Dear Sean, I'm sorry but I was extremely busy in my final year exams, Grand > viva and final year project. I wish you remembered that I introduced myself > to the brlcad-devel. That’s why I asked, and thanks for pointing out that you had.

Re: [brlcad-devel] GSoC 2015 proposal

2015-04-20 Thread Tanuj kr Aasawat
Dear Sean, I'm sorry but I was extremely busy in my final year exams, Grand viva and final year project. I wish you remembered that I introduced myself to the brlcad-devel. Thanks and Regards, Tanuj Kr Aasawat Dept. of I.T., Jadavpur University, India Mitacs Globalink Research Intern, University o

Re: [brlcad-devel] GSoC 2015 Introduction

2015-04-14 Thread Ilinca Andrei
Hello, Sorry for the lack of interaction this days, I have been very busy with school assignments and also doing research about parsers and how to implement them. Below is a brief description of what I have been doing : First of all, I read about what a parser is, how it works, grammars (I don t

Re: [brlcad-devel] [GSOC 2015] Benchmark Performance Database

2015-04-01 Thread Ankesh Anand
On Thu, Apr 2, 2015 at 11:24 AM, Chinmaya Patanaik < patanaikchinm...@gmail.com> wrote: > Hi Ankesh, > > As per your suggestion I have created a new pull. > > Link - https://github.com/BRL-CAD/benchmark/pull/3 > Merged. Currently it's not possible to create a new issue in the central repository

Re: [brlcad-devel] [GSOC 2015] Benchmark Performance Database

2015-04-01 Thread Chinmaya Patanaik
Hi Ankesh, As per your suggestion I have created a new pull. Link - https://github.com/BRL-CAD/benchmark/pull/3 Currently it's not possible to create a new issue in the central repository as it's forked from yours. Please suggest any alternatives. Meanwhile I will try to go through the code and

Re: [brlcad-devel] [GSOC 2015] Benchmark Performance Database

2015-04-01 Thread Ankesh Anand
Hi Chinmaya, I have reviewed both your the pull requests and left the comments on the github page. The pull requests you submitted are minor changes and we would like you to work on something more substantial. You can choose to work on one of the enhancements you have mentioned, or report and fix

Re: [brlcad-devel] [GSOC 2015] Benchmark Performance Database

2015-03-28 Thread Chinmaya Patanaik
Hi Sean, I have sent two pull requests to the benchmark performance master repository. Can you please review them and let me know if they are correct. Links - https://github.com/BRL-CAD/benchmark/pull/1, https://github.com/BRL-CAD/benchmark/pull/2 Thanks, Chinmaya On Wed, Mar 25, 2015 at 4:28 P

Re: [brlcad-devel] GSoC 2015 proposal

2015-03-27 Thread Christopher Sean Morrison
On Mar 27, 2015, at 12:53 PM, Tanuj kr Aasawat wrote: > 2) creating a significant patch before Monday. > >> I would try my best, after submitting my proposal. Do I need to submit it > >> in OpenCL. You do not. Please see the recent mailing list archive for details on what constitutes an ap

[brlcad-devel] GSoC 2015: Materials Database

2015-03-27 Thread Albert Coder
Hi everyone, I have submitted the proposal for Materials Database project this year too and I am excited to work with new fellow developers. Hope to accomplish / make it production ready this year. -- Thanks Albert www.coderalbert.wordpress.com https://github.com/albertcoder/ || Smooth seas do n

Re: [brlcad-devel] GSoC 2015 proposal

2015-03-27 Thread Tanuj kr Aasawat
Sorry for previous email, I don't know how it got shoot up. Please ignore that. Thanks Christopher for quick reply. Do you have any experience working with OpenCL? >> No. But I have good experience in CUDA, so it would be easier to learn OpenCL. 2) creating a significant patch before Monday. >>

Re: [brlcad-devel] GSoC 2015 proposal

2015-03-27 Thread Tanuj kr Aasawat
Thanks Christopher for quick reply. 2) creating a significant patch before Monday. >> Thanks and Regards, Tanuj Kr Aasawat Deptt. of I.T, Jadavpur University, India Mitacs Globalink Research Intern, University of British Columbia, Vancouver, Canada On Fri, Mar 27, 2015 at 10:06 PM, Christopher S

Re: [brlcad-devel] GSoC 2015 proposal

2015-03-27 Thread Christopher Sean Morrison
Welcome Tanuj, On Mar 27, 2015, at 12:15 PM, Tanuj kr Aasawat wrote: > I'm Tanuj Kr Aasawat and a final year undergrad in Dept. of > Information technology, Jadavpur University, India. I implemented Label > propagation algorithm(parallel cpu version) when I was at University

Re: [brlcad-devel] GSoC 2015 proposal

2015-03-27 Thread Tanuj kr Aasawat
I sincerely apologise for being so late, but I would try my best to submit a very nice proposal within remaining 2 hours. On Fri, Mar 27, 2015 at 9:45 PM, Tanuj kr Aasawat wrote: > Hi Everyone, > I'm Tanuj Kr Aasawat and a final year undergrad in Dept. > of Information techno

[brlcad-devel] GSoC 2015 proposal

2015-03-27 Thread Tanuj kr Aasawat
Hi Everyone, I'm Tanuj Kr Aasawat and a final year undergrad in Dept. of Information technology, Jadavpur University, India. I implemented Label propagation algorithm(parallel cpu version) when I was at University of British Columbia, Canada as Mitacs Globalink Scholar. Practical

Re: [brlcad-devel] GSoC 2015 Introduction

2015-03-25 Thread Ilinca Andrei
Hello, I have updated my proposal according to the last feedback I received. Here's a summary of what I have been doing: - I used OpenSCAD to create a form provided by them (door stopper) to better see the difference between actual .scad and .csg - I updated my timeline to reflect "implement .csg

Re: [brlcad-devel] GSoC 2015 - Introduction

2015-03-25 Thread Inderpreet Singh
On Mar 18, 2015 11:58 AM, "ujjwal wahi" wrote: > > Sean, > I found these two git repos [1] & [2]. > > In 2013, code was done in PHP and then in 2014 it was ported to > node.js. Current project idea list PHP/Python. I am little confused > that in which language it needs to be implemented. I can wor

Re: [brlcad-devel] GSoC 2015 - Introduction

2015-03-25 Thread Inderpreet Singh
On Mar 18, 2015 12:56 AM, "ujjwal wahi" wrote: > > Hello, > > I am Ujjwal Wahi, student from India. I will apply for GSoC project : > Online Geometry Viewer Back-end > > I have decent knowledge of PHP, Python, Javascript and C#. I have > experience of developing couple of B2B portals:[1] and [2] a

[brlcad-devel] [GSOC 2015] Benchmark Performance Database

2015-03-25 Thread Chinmaya Patanaik
Hi Sean, I am interested in the Benchmark Performance Database project. I went through the installation instructions and I was able to successfully set it up on my local system. But I noticed a couple of issues which are listed below. 1. Navbar url links are not properly configured. Ex - 'about'

Re: [brlcad-devel] GSoC 2015 Introduction

2015-03-23 Thread Clifford Yapp
On Mon, Mar 23, 2015 at 5:46 PM, Ilinca Andrei wrote: > Hello, > > I have been reading, documenting, doing research and speaking with OpenSCAD > mentors a lot these days and I've managed to come up with following > solutions and conclusions regarding the OpenSCAD Importer project : > > 2) OpenSCAD

Re: [brlcad-devel] GSoC 2015 Introduction

2015-03-23 Thread Ilinca Andrei
Hello, I have been reading, documenting, doing research and speaking with OpenSCAD mentors a lot these days and I've managed to come up with following solutions and conclusions regarding the OpenSCAD Importer project : 1) The idea of using the FreeCAD LGPL python parser and implementing it into B

Re: [brlcad-devel] [GSOC 2015] Participant - Materials DatabaseProject

2015-03-23 Thread Christopher Sean Morrison
On Mar 23, 2015, at 11:39 AM, Chinmaya Patanaik wrote: > • User signup/login using their social media accounts(Google, Facebook, > Twitter). Use OAuth for user authentication. There are a lot of excellent > django libraries available such as django-allauth, django-social-auth etc. If t

Re: [brlcad-devel] [GSOC 2015] Participant - Materials DatabaseProject

2015-03-23 Thread Chinmaya Patanaik
Hi Sean, Currently I am setting up the project on my local system. I went through last year's proposal and I have some new ideas that I would like to mention. Some of the major features that I want to work on are listed below. 1. User signup/login using their social media accounts(Google, Face

Re: [brlcad-devel] [GSOC 2015] Participant - Materials Database Project

2015-03-23 Thread Christopher Sean Morrison
On Mar 23, 2015, at 2:18 AM, Chinmaya Patanaik wrote: > I am a first year masters student from Prague, Czech Republic. I am > interested in contributing to 'Materials Database' project under BRL-CAD. Welcome Chinmaya! > I went through the github repository. It seems an initial version has b

[brlcad-devel] [GSOC 2015] Participant - Materials Database Project

2015-03-22 Thread Chinmaya Patanaik
Hi, I am a first year masters student from Prague, Czech Republic. I am interested in contributing to 'Materials Database' project under BRL-CAD. I am comfortable with Python and various web development technologies. I also have decent experience in building apps using Django framework. I have be

Re: [brlcad-devel] GSoC 2015 - Introduction

2015-03-22 Thread Deepak Sharma
I have submitted the PR for OGV. Someone please check. Thanks -- Deepak Kumar Sharma Blog: http://deekysharma.wordpress.com " Mistakes are proof that you are trying " -- Dive into the World of Parallel Programming The

Re: [brlcad-devel] GSoC 2015 participation

2015-03-22 Thread Christopher Sean Morrison
On Mar 22, 2015, at 1:02 PM, Vicky wrote: > There are just some pictures on google drive but i dont find the github's > repository for clone it. > > Where could i find it? https://github.com/BRL-CAD/MaterialsDatabase Cheers! Sean ---

Re: [brlcad-devel] GSoC 2015 participation

2015-03-22 Thread Vicky
On Friday 20 March 2015 10:33:37 Christopher Sean Morrison wrote: > Welcome Vicky! thanks! hope to make good contribution for the community :D > For some projects that have been worked on previously, you’ll want to make > sure you check on the prior efforts to see where things left off. I have

Re: [brlcad-devel] GSoC 2015 Introduction

2015-03-20 Thread Christopher Sean Morrison
On Mar 19, 2015, at 7:33 PM, Ilinca Andrei wrote: > Kintel advised me to aim towards creating a common parser for both openscad > and brl-cad and relicense that as LGPL or BSD/MIT. He said we could either > refactor existing openscad code into a clean component, or rewrite the parser > and re

Re: [brlcad-devel] GSoC 2015 participation

2015-03-20 Thread Christopher Sean Morrison
On Mar 20, 2015, at 9:51 AM, Vicky wrote: > Hi all! > > I joined to this mailing list because I am a CAD user and I like FOSS, I > would > like to contribute to BRL-CAD by participating to GSoC 2015. Welcome Vicky! >> From the ideas list I liked more Benchmark Performance Database and Mater

[brlcad-devel] GSoC 2015 participation

2015-03-20 Thread Vicky
Hi all! I joined to this mailing list because I am a CAD user and I like FOSS, I would like to contribute to BRL-CAD by participating to GSoC 2015. >From the ideas list I liked more Benchmark Performance Database and Material Database, I like web development but I usually don't have much time t

Re: [brlcad-devel] GSoC 2015 Introduction

2015-03-19 Thread Ilinca Andrei
Hi, I talked today with the OpenSCAD devs on their irc and you were right. There is a way of using their code to make benefits to both BRL-CAD and OpenSCAD orgs. Kintel advised me to aim towards creating a common parser for both openscad and brl-cad and relicense that as LGPL or BSD/MIT. He said

[brlcad-devel] GSoC 2015 - Introduction

2015-03-19 Thread Deepak Sharma
Hi, I am final year undergraduate student at Guru Nanak Dev Engineering College. I have been in touch with BRL-CAD from last one year and have also been a mentor in GCI. I am Web Developer so I mostly converse in HTML, Sass and JavaScript. On the backend I have worked in PHP, Ruby, Python and node

Re: [brlcad-devel] GSoC 2015 Introduction

2015-03-18 Thread Clifford Yapp
On Wed, Mar 18, 2015 at 11:17 AM, Ilinca Andrei wrote: > Hi, > > Quick update: > > I attached below my proposal for the OpenSCAD Importer project. I really > hope I've covered all the important aspects but if I missed any, please let > me know so I can make the proper adjustments. Good progress o

Re: [brlcad-devel] GSoC 2015 - Introduction

2015-03-18 Thread gagan
On Wed, Mar 18, 2015 at 11:58 AM, ujjwal wahi wrote: > Sean, > I found these two git repos [1] & [2]. > > In 2013, code was done in PHP and then in 2014 it was ported to > node.js. Current project idea list PHP/Python. I am little confused > that in which language it needs to be implemented. I can

Re: [brlcad-devel] GSoC 2015 - Introduction

2015-03-17 Thread ujjwal wahi
Sean, I found these two git repos [1] & [2]. In 2013, code was done in PHP and then in 2014 it was ported to node.js. Current project idea list PHP/Python. I am little confused that in which language it needs to be implemented. I can work in PHP or Python. If we are going to use PHP I will use Sym

Re: [brlcad-devel] GSOC 2015 application

2015-03-17 Thread Christopher Sean Morrison
On Mar 14, 2015, at 7:33 PM, Djimeli Konrad wrote: > On 3 March 2015 at 03:46, Christopher Sean Morrison wrote: > > Robust and complete geometry conversion is indeed a priority/good project to > work on. If your C++ skills are strong, you may want to consider a second > proposal to work on

Re: [brlcad-devel] GSoC 2015 - Introduction

2015-03-17 Thread Christopher Sean Morrison
On Mar 17, 2015, at 9:47 PM, ujjwal wahi wrote: > Hello, Welcome Ujjwal, > While going through wiki pages Online Geometry[0] and Online > Geometry/TODO[1] I didn't find any link to currently implemented code. > Do I need to start from scratch or I am missing a link to code. Please > help me in

Re: [brlcad-devel] GSoC 2015 - Introduction

2015-03-17 Thread ujjwal wahi
Hello, While going through wiki pages Online Geometry[0] and Online Geometry/TODO[1] I didn't find any link to currently implemented code. Do I need to start from scratch or I am missing a link to code. Please help me in getting started. On Wed, Mar 18, 2015 at 12:55 AM, ujjwal wahi wrote: > Hell

[brlcad-devel] GSoC 2015 - Introduction

2015-03-17 Thread ujjwal wahi
Hello, I am Ujjwal Wahi, student from India. I will apply for GSoC project : Online Geometry Viewer Back-end I have decent knowledge of PHP, Python, Javascript and C#. I have experience of developing couple of B2B portals:[1] and [2] and an e-commerce website [3] Looking forward to work with BRL

Re: [brlcad-devel] GSoC 2015 Introduction

2015-03-16 Thread Clifford Yapp
On Mon, Mar 16, 2015 at 6:25 PM, Ilinca Andrei wrote: > Hello! > > As we discussed, I have submitted a patch adding a very simple OpenSCAD > importer, any feedback is appreciated! Looks good at a quick glance - I'll try to take a closer look in the next day or two. > At this moment, my understan

Re: [brlcad-devel] GSoC 2015 Introduction

2015-03-16 Thread Ilinca Andrei
Hello! As we discussed, I have submitted a patch adding a very simple OpenSCAD importer, any feedback is appreciated! After looking at the https://github.com/TomHodson/Raspberry-Pi-OpenSCAD-Model I believe a confusion I had cleared. I initially beli

Re: [brlcad-devel] GSoC 2015 Introduction

2015-03-15 Thread Clifford Yapp
On Sun, Mar 15, 2015 at 5:59 PM, Ilinca Andrei wrote: > Hi, > > Based on your reply, I decided to focus on the OpenSCAD Importer project. I > have been looking over the 3dm-g and g-3dm files and my understanding is > that they convert the geometry from 3dm model ( Rhino Modeling ) to BRL-CAD > .g

Re: [brlcad-devel] GSoC 2015 Introduction

2015-03-15 Thread Ilinca Andrei
Hi, Based on your reply, I decided to focus on the OpenSCAD Importer project. I have been looking over the 3dm-g and g-3dm files and my understanding is that they convert the geometry from 3dm model ( Rhino Modeling ) to BRL-CAD .g format, namely BRL-CAD data

Re: [brlcad-devel] GSoC 2015 Introduction

2015-03-14 Thread Kalpit Thakkar
Hi Ilinca! On Sun, Mar 15, 2015 at 6:24 AM, Ilinca Andrei wrote: > > I forgot to mention, when I downloaded BRL-CAD from svn(svn checkout > https://svn.code.sf.net/p/brlcad/code/brlcad/trunk brlcad) I had the > following error: > Policy "CMP0021" is not known to this version of CMake. > I did so

Re: [brlcad-devel] GSoC 2015 Introduction

2015-03-14 Thread Ilinca Andrei
I forgot to mention, when I downloaded BRL-CAD from svn(svn checkout https://svn.code.sf.net/p/brlcad/code/brlcad/trunk brlcad) I had the following error: Policy "CMP0021" is not known to this version of CMake. I did some research to find out what to replace it with, but I was unable to find anythi

Re: [brlcad-devel] GSOC 2015 application

2015-03-14 Thread Djimeli Konrad
On 3 March 2015 at 03:46, Christopher Sean Morrison wrote: > > Robust and complete geometry conversion is indeed a priority/good project > to work on. If your C++ skills are strong, you may want to consider a > second proposal to work on BRL-CAD’s STEP support. This could be for our > STEP impo

Re: [brlcad-devel] GSoC 2015 Introduction

2015-03-14 Thread Clifford Yapp
On Sat, Mar 14, 2015 at 5:40 PM, Ilinca Andrei wrote: > > Hello, > > I'm Andrei Ilinca, and I'm a second year undergraduate at Polytechnic > University of Bucharest, Faculty of Automatic Control and Computer Science, > looking to participate in gsoc 2015, hopefully with BRL-CAD! Welcome! > So wh

[brlcad-devel] GSoC 2015 Introduction

2015-03-14 Thread Ilinca Andrei
Hello, I'm Andrei Ilinca, and I'm a second year undergraduate at Polytechnic University of Bucharest, Faculty of Automatic Control and Computer Science, looking to participate in gsoc 2015, hopefully with BRL-CAD! So why BRL-CAD ? And why BRL-CAD now? You might believe that I arrived late. Howev

[brlcad-devel] Gsoc 2015: Interest in Improve DXF import and Export and Multithreaded Geometry Evaluations for OpenSCAD

2015-03-14 Thread Wisdom Nji
Hello everyone, My Name is Wisdom Nji, a Freshman Computer Science Student at the Catholic University of Bamenda, Bamenda-Cameroon. I am proficient in C/C++ and I've been a member of the OpenSCAD community for some few weeks. I will like to do GSoC with this organization and it's my first communic

Re: [brlcad-devel] GSoC 2015: BRL-CAD Patches

2015-03-07 Thread Christopher Sean Morrison
On Mar 7, 2015, at 8:34 PM, Brad Hollister wrote: > Hi, > > Could the potential mentors of both of the following two projects: We strive for group-based mentoring, so you may/should get a response from anyone. I often have time / inclination to respond, but don’t take that to imply I'd be a

Re: [brlcad-devel] GSoC 2015 Applications

2015-03-07 Thread Clifford Yapp
On Sat, Mar 7, 2015 at 7:58 PM, Brad Hollister wrote: > I will revamp the proposal, likely focusing on > NURBS modeling as related to one of the suggested projects. There are a couple directions to explore with that focus. One possibility is to study how Ayam manipulates NURBS and see if that a

[brlcad-devel] GSoC 2015: BRL-CAD Patches

2015-03-07 Thread Brad Hollister
Hi, Could the potential mentors of both of the following two projects: 1. NURBS Editing Support 2. NMG Editing provide suggested patches that will bolster my GSoC Proposal? I would like to submit these patches before March 16th in order to familiarize myself with BRL-CAD code and to better under

Re: [brlcad-devel] GSoC 2015 Applications

2015-03-07 Thread Brad Hollister
On Tue, Mar 3, 2015 at 3:24 PM, wrote: >> Preliminary GSoC proposal: >> >> https://users.soe.ucsc.edu/~behollis/hollisterPropGSoC15Brl-cad.pdf > > Others mentors are welcome to comment, but way to get ahead of the game. > This looks like a nicely detailed proposal that you put a lot of time an

Re: [brlcad-devel] GSOC 2015

2015-03-05 Thread ANKIT SINGH
hello sir, i also want to propose project for gsoc 2015 and i would like to work on web development i have a prior knowledge of html , css , java-script . i would like to know more about it , like what will i have to do. i want to discus the project details On Fri, Mar 6, 2015 at 2:35 AM, Chr

Re: [brlcad-devel] GSOC 2015

2015-03-05 Thread Christopher Sean Morrison
On Mar 5, 2015, at 3:41 PM, Shivoam Malhotra wrote: > Hello > > I want to submit a proposal for gsoc 2015 and wanted some guidance in > choosing the project idea. I am proficient in C, C++. Excellent > I have never used Tcl before. No problem. > I have used bullet physics before and am fam

[brlcad-devel] GSOC 2015

2015-03-05 Thread Shivoam Malhotra
Hello I want to submit a proposal for gsoc 2015 and wanted some guidance in choosing the project idea. I am proficient in C, C++. I have never used Tcl before. I have used bullet physics before and am familiar with its basic functionality. I am interested in working on physics/geometry related pro

Re: [brlcad-devel] GSoC 2015

2015-03-05 Thread Christopher Sean Morrison
On Mar 5, 2015, at 5:07 AM, Tawhid Hannan wrote: > I'm Tawhid, a final year Chemistry student. I've been developing little > things for about a two years now, and have a decent understanding of C++ and > Java. GSoC seems like a good opportunity to get involved with something > bigger than a l

[brlcad-devel] GSoC 2015

2015-03-05 Thread Tawhid Hannan
Hi, I'm Tawhid, a final year Chemistry student. I've been developing little things for about a two years now, and have a decent understanding of C++ and Java. GSoC seems like a good opportunity to get involved with something bigger than a little molecule simulation, and a few of the starting point

Re: [brlcad-devel] GSoC 2015 Project Introduction

2015-03-04 Thread Christopher Sean Morrison
Welcome Benson, On Mar 4, 2015, at 2:57 PM, benson chepkwony wrote: > Hay, my name is Benson Chepkwony and I would like to take this opportunity > and to; express my interest in applying for GSoC 2015, to introduce myself to > BrlCad, and above all, I would like to join your team for GSoC Pro

[brlcad-devel] GSoC 2015 Project Introduction

2015-03-04 Thread benson chepkwony
Hay, my name is Benson Chepkwony and I would like to take this opportunity and to; express my interest in applying for GSoC 2015, to introduce myself to BrlCad, and above all, I would like to join your team for GSoC Project. After carefully browsing GSoC projects, I found multiple appealing proj

[brlcad-devel] GSoC 2015

2015-03-04 Thread Aman Agarwal
Hi, I am Aman Agarwal, a CS undergraduate at IIIT-Hyderabad and I'd like to contribute to BRL-CAD as a part of GSoC 2015. I was going through the list of Web Development projects and it'd be great if someone could guide me as to which project shall I start working on and what specific task can I

Re: [brlcad-devel] GSOC 2015

2015-03-03 Thread Jacob Burroughs
Welcome! This project was already (largely) tackled last year ( http://brlcad.org/wiki/Google_Summer_of_Code/2014#Online_Geometry_Viewer), which I would suggest you take a look at. I don't know if there is room for some sort of GSOC project building on last year's work or if you would be better s

Re: [brlcad-devel] GSoC 2015 Applications

2015-03-03 Thread Christopher Sean Morrison
On Mar 3, 2015, at 12:45 PM, Brad Hollister wrote: > It appears that Google isn't accepting applications from students > until March 16th. This is true. > However, from the information at brlcad.org, it is suggested to post > preliminary proposals on the mailing list. So, if the appropriate > m

[brlcad-devel] GSOC 2015

2015-03-03 Thread Aakash Tyagi
Hello People. This is Aakash, I am currently a second year student with a passion for web development. I have 2 years of experience in the same. I know C, PHP, HTML5, CSS3, Javascript, Bootstrap, Angular JS. I have launched some products as well as working on some. I also have some experience in O

[brlcad-devel] GSoC 2015 Mentors: sign up on Melange before March 8th

2015-03-03 Thread Christopher Sean Morrison
GSoC Mentors, A) Please be sure to sign up on Melange (google-melange.com) as a mentor for BRL-CAD and create your profile too [1]. Anyone with commit rights or is a designated core contributor to one of our five umbrella orgs may be a mentor. The main criteria is at least 10 hours a week av

[brlcad-devel] GSoC 2015 Applications

2015-03-03 Thread Brad Hollister
Hi, It appears that Google isn't accepting applications from students until March 16th. However, from the information at brlcad.org, it is suggested to post preliminary proposals on the mailing list. So, if the appropriate mentor(s) can comment on my draft, that would be much appreciated. Prelim

Re: [brlcad-devel] GSOC 2015 application

2015-03-02 Thread Christopher Sean Morrison
On Mar 2, 2015, at 8:51 PM, Djimeli Konrad wrote: > I was looking at the BRLCAD google summer of code ideas page > and I would like to work on developing an x3d importer as a gsoc > project. Is this a priotity/good project to work on for the google > summer of code 2015?. Robust and comp

[brlcad-devel] GSOC 2015 application

2015-03-02 Thread Djimeli Konrad
Hello I was looking at the BRLCAD google summer of code ideas page and I would like to work on developing an x3d importer as a gsoc project. Is this a priotity/good project to work on for the google summer of code 2015?. Cheers! Konrad

Re: [brlcad-devel] Gsoc 2015 Applicant.

2015-03-02 Thread Saurabh Goyal
challenge accepted..!! i went through the list of projects and for initial i selected : openScad - Issue handling test framework stepCode - refractor the present code do openscad and stepcode come under brlcad? i think i am ready to pick any one of them, if no one else is working on them as of now

Re: [brlcad-devel] Gsoc 2015 Applicant.

2015-03-02 Thread Christopher Sean Morrison
On Mar 2, 2015, at 3:04 PM, Saurabh Goyal wrote: > Hi, I am Saurabh Goyal a third year undergraduate student in Indian Institute > of Technology Varanasi. I was looking forward to contribute to BRL-CAD as it > involves work in my field of interest like scientific computing and use c++. Welcom

[brlcad-devel] Gsoc 2015 Applicant.

2015-03-02 Thread Saurabh Goyal
Hi, I am Saurabh Goyal a third year undergraduate student in Indian Institute of Technology Varanasi. I was looking forward to contribute to BRL-CAD as it involves work in my field of interest like scientific computing and use c++. I have taken a course in Machine learning on Coursera by Andrew Ng

  1   2   >