Difference between revisions of "Google Season of Docs/Project Ideas"

From BRL-CAD
(Created blank page)
 
(14 intermediate revisions by the same user not shown)
Line 1: Line 1:
 +
If you want to work on '''computer-aided design (CAD), geometry, or graphics''' documentation, you've come to the right place!  Please check out our project ideas below.  They are roughly in order or priority and difficulty.  Here are some links to help you get started with a proposal:
  
 +
# [https://brlcad.org/wiki/Compiling Get BRL-CAD source code]
 +
# [https://brlcad.org/wiki/Documentation Read our existing docs]
 +
# [https://brlcad.org/wiki/Main_page Get additional doc perspective]
 +
# [http://brlcad.org/HACKING_BRL-CAD.pdf Read our contributor guide]
 +
 +
We will consider GSoD proposals for '''all''' skill levels ranging from simple to crazy hard and everything in between. [https://brlcad.zulipchat.com Introduce yourself via chat] (preferred) or [mailto:devs@brlcad.org via e-mail], and we'll help you plan a project right for you.
 +
 +
Remember that project descriptions are just ''rough ideas''.  You must expand with [[Summer_of_Code/Application_Guidelines|considerably more detail]].  Set goals that fit your experience and interest.
 +
 +
 +
= Write an "Introduction to BRL-CAD" =
 +
 +
{|bgcolor=#fff
 +
!
 +
!align=center|Technologies
 +
!align=center|Difficulty
 +
!align=center|Contacts
 +
|-
 +
|width=62%|This is as straight-forward as it sounds, write an introduction intended for users discovering BRL-CAD for the first time.  It should minimally cover basic installation, an overall description of capabilities, of BRL-CAD's modeling principles, basic usage of major tools, modeling, import/export, analysis, and rendering.  It should be as concise as possible, structured either as a single independent document or series of independent articles.
 +
References:
 +
* see doc/docbook files in a Subversion checkout
 +
* http://brlcad.org/d/about
 +
* http://brlcad.org/HACKING_BRL-CAD.pdf
 +
|width=18% align=center bgcolor=#eee|Docbook XML
 +
|width=10% align=center|Easy
 +
|width=10% align=center bgcolor=#eee|morrison, rossberg
 +
|}
 +
 +
= Organize all existing user docs =
 +
 +
{| bgcolor=#fff
 +
!
 +
!align=center|Technologies
 +
!align=center|Difficulty
 +
!align=center|Contacts
 +
|-
 +
|width=62%|Tame the beast.  BRL-CAD has more than a million words of documentation spread across hundreds of documents.  Some are huge, some are small.  There are books, articles, presentations, manual pages, diagrams, reference cards, and more in a variety of formats and locations.  The goal of this task to to conduct a complete audit of all existing documentation, categorize and organize documentation, make recommendations and/or facilitate with merging overlapping documentation, and present all available documentation in a new web index.
 +
References:
 +
* see doc/ hierarchy in a Subversion checkout
 +
* http://brlcad.org/wiki/Documentation
 +
* http://brlcad.org/wiki/Main_Page
 +
* http://brlcad.org/HACKING_BRL-CAD.pdf
 +
 +
|width=18% align=center bgcolor=#eee|Mediawiki, Docbook XML, Subversion
 +
|width=10% align=center|Medium
 +
|width=10% align=center bgcolor=#eee|yapp, morrison, rossberg
 +
|}
 +
 +
= Write a "BRL-CAD Primitives" manual =
 +
 +
{| bgcolor=#fff
 +
!
 +
!align=center|Technologies
 +
!align=center|Difficulty
 +
!align=center|Contacts
 +
|-
 +
|width=62%|BRL-CAD has approximately 2 dozen primitives.  New users learning how to model with BRL-CAD for the first time end up utilizing an appendix in our existing MGED Tutorial Series, which is a brief guide to some of the supported primitives.  For this project, we'd like all primitives to be documented with rendered visuals where appropriate, explanation of all parameters, and depiction of the variety possible with each primitive. 
 +
References:
 +
* see src/librt/primitives in a source checkout
 +
* http://brlcad.org/gallery/picture.php?/5/category/1
 +
* https://brlcad.org/w/images/c/cf/Introduction_to_MGED.pdf
 +
* http://brlcad.org/tmp/primitives/
 +
|width=18% align=center bgcolor=#eee|Docbook XML, Subversion, basic reading of C/C++
 +
|width=10% align=center|Medium
 +
|width=10% align=center bgcolor=#eee|morrison, rossberg
 +
|}
 +
 +
= Organize and publish developer docs =
 +
 +
{| bgcolor=#fff
 +
!
 +
!align=center|Technologies
 +
!align=center|Difficulty
 +
!align=center|Contacts
 +
|-
 +
|width=62%|BRL-CAD uses [http://www.doxygen.nl Doxygen] for API documentation.  It's a simple way for developers to document API by merely adding /** comments like this */ to their code, typically before a function.  The primary goal of this project is to make sure all of the public API has a Doxygen comment, has parameters tagged appropriately, grouped accordingly, and that all groupings are documented as well.  The secondary goal is to then publish the output from Doxygen to our website in HTML and PDF forms so that reference documentation is available to everyone.
 +
References:
 +
* see misc/doxygen in a source checkout
 +
* http://brlcad.org/HACKING_BRL-CAD.pdf
 +
* http://www.doxygen.nl
 +
|width=18% align=center bgcolor=#eee|Doxygen, Subversion, C/C++ code comments
 +
|width=10% align=center|Medium
 +
|width=10% align=center bgcolor=#eee|yapp, morrison, rossberg
 +
|}
 +
 +
= Upgrade doc infrastructure =
 +
 +
{| bgcolor=#fff
 +
!
 +
!align=center|Technologies
 +
!align=center|Difficulty
 +
!align=center|Contacts
 +
|-
 +
|width=62%|BRL-CAD has extensive documentation infrastructure using Docbook XML whereby we "compile" them into HTML, PDF, and other formats.  This approach helps ensure docs remain up-to-date, without syntax/structure errors, and allows the documentation to be composed and reused in different ways (e.g., an tutorial on some topic might get embedded as an appendix in one document or a chapter to another).  That said, the underlying format is tedious to write and hard for contributors.  We'd like to migrate to a newer system like [https://docusaurus.io Docusaurus] or [https://antora.org Antora], converting everything over while still retaining build system integration.
 +
References:
 +
* see doc/docbook in a source checkout
 +
* http://brlcad.org/HACKING_BRL-CAD.pdf
 +
* https://docbook.org
 +
* https://docusaurus.io
 +
|width=18% align=center bgcolor=#eee|Docbook XML, Markdown, Subversion, Docusaurus
 +
|width=10% align=center|Hard
 +
|width=10% align=center bgcolor=#eee|yapp, morrison, rossberg
 +
|}

Revision as of 11:12, 10 May 2019

If you want to work on computer-aided design (CAD), geometry, or graphics documentation, you've come to the right place! Please check out our project ideas below. They are roughly in order or priority and difficulty. Here are some links to help you get started with a proposal:

  1. Get BRL-CAD source code
  2. Read our existing docs
  3. Get additional doc perspective
  4. Read our contributor guide

We will consider GSoD proposals for all skill levels ranging from simple to crazy hard and everything in between. Introduce yourself via chat (preferred) or via e-mail, and we'll help you plan a project right for you.

Remember that project descriptions are just rough ideas. You must expand with considerably more detail. Set goals that fit your experience and interest.


Write an "Introduction to BRL-CAD"

Technologies Difficulty Contacts
This is as straight-forward as it sounds, write an introduction intended for users discovering BRL-CAD for the first time. It should minimally cover basic installation, an overall description of capabilities, of BRL-CAD's modeling principles, basic usage of major tools, modeling, import/export, analysis, and rendering. It should be as concise as possible, structured either as a single independent document or series of independent articles.

References:

Docbook XML Easy morrison, rossberg

Organize all existing user docs

Technologies Difficulty Contacts
Tame the beast. BRL-CAD has more than a million words of documentation spread across hundreds of documents. Some are huge, some are small. There are books, articles, presentations, manual pages, diagrams, reference cards, and more in a variety of formats and locations. The goal of this task to to conduct a complete audit of all existing documentation, categorize and organize documentation, make recommendations and/or facilitate with merging overlapping documentation, and present all available documentation in a new web index.

References:

Mediawiki, Docbook XML, Subversion Medium yapp, morrison, rossberg

Write a "BRL-CAD Primitives" manual

Technologies Difficulty Contacts
BRL-CAD has approximately 2 dozen primitives. New users learning how to model with BRL-CAD for the first time end up utilizing an appendix in our existing MGED Tutorial Series, which is a brief guide to some of the supported primitives. For this project, we'd like all primitives to be documented with rendered visuals where appropriate, explanation of all parameters, and depiction of the variety possible with each primitive.

References:

Docbook XML, Subversion, basic reading of C/C++ Medium morrison, rossberg

Organize and publish developer docs

Technologies Difficulty Contacts
BRL-CAD uses Doxygen for API documentation. It's a simple way for developers to document API by merely adding /** comments like this */ to their code, typically before a function. The primary goal of this project is to make sure all of the public API has a Doxygen comment, has parameters tagged appropriately, grouped accordingly, and that all groupings are documented as well. The secondary goal is to then publish the output from Doxygen to our website in HTML and PDF forms so that reference documentation is available to everyone.

References:

Doxygen, Subversion, C/C++ code comments Medium yapp, morrison, rossberg

Upgrade doc infrastructure

Technologies Difficulty Contacts
BRL-CAD has extensive documentation infrastructure using Docbook XML whereby we "compile" them into HTML, PDF, and other formats. This approach helps ensure docs remain up-to-date, without syntax/structure errors, and allows the documentation to be composed and reused in different ways (e.g., an tutorial on some topic might get embedded as an appendix in one document or a chapter to another). That said, the underlying format is tedious to write and hard for contributors. We'd like to migrate to a newer system like Docusaurus or Antora, converting everything over while still retaining build system integration.

References:

Docbook XML, Markdown, Subversion, Docusaurus Hard yapp, morrison, rossberg