Browsing projects by Tag(s)

Select a tag to browse associated projects and drill deeper into the tag cloud.

Showing page 1 of 2

The OpenBSD project produces a FREE, multi-platform 4.4BSD-based UNIX-like operating system... efforts emphasize portability, standardization, correctness, proactive security and integrated cryptography. OpenBSD supports binary emulation of most programs from SVR4 (Solaris), FreeBSD, Linux, BSD/OS, SunOS and HP-UX.

4.74545
   
  0 reviews  |  127 users  |  0 current contributors
 
 

NetBSD is a free, secure, and highly portable Unix-like Open Source operating system available for many platforms, from 64-bit Opteron machines and desktop systems to handheld and embedded devices. Its clean design and advanced features make it excellent in both production and research ... [More] environments, and it is user-supported with complete source. Many applications are easily available through pkgsrc, the NetBSD Packages Collection. [Less]

4.64286
   
  0 reviews  |  65 users  |  16,791,859 lines of code  |  133 current contributors  |  Analyzed 4 days ago
 
 

A library for loading 3D models of many file types.

5.0
 
  0 reviews  |  1 user  |  144,346 lines of code  |  0 current contributors  |  Analyzed 1 day ago
 
 

Open Inventor ViewerSoQtViewer / SoWxViewer class are OpenInventor 3D-model examination viewer for Qt 3.x/4.x and wxWidgets 2.8. This class is the viewer considered to be the most "general purpose" viewer, and it is often used in rapid prototyping to examine simple models aswell as ... [More] complete scenes. hold down left mouse button and move mouse pointer to rotate the camera around it's current focal point hold middle mouse button to pan use mouse wheel to zoom / dolly click 'ESC' key to switch to and from 'camera interaction' mode and 'scenegraph interaction' mode SupportSGI Open Inventor 2.3.2 (win/linux) Mercury Open Inventor 7.1.0 (all) Coin3d 2.5.0 (win/linux/mac) Coin3d 3.0.0 (win/linux/mac) LimitationsNo stereo Mercury (c) ScaleViz (c) not supported Mercury (c) Open Inventor 7.0.1 crash (use 7.1.0 instead) Feel free to join project. [Less]

0
 
  0 reviews  |  0 users  |  6,587 lines of code  |  0 current contributors  |  Analyzed 2 days ago
 
 

Projeto de graduação interdisciplinar a ser desenvolvido ao longo do período acadêmico, que tem como objetivo desenvolver um software para auxilio na gestão de uma imobiliária.

0
 
  0 reviews  |  0 users  |  4,752 lines of code  |  0 current contributors  |  Analyzed 4 days ago
 
 

c2w

Compare

Repositorio de códigos - C2W - SGI

0
 
  0 reviews  |  0 users  |  21,577 lines of code  |  0 current contributors  |  Analyzed 6 days ago
  c2w sgi
 
 

libcstl是使用C语言编写的一个通用的数据结构和常用的算法库,它模仿SGI ... [More] STL的接口和实现,支持vector,list,deque等等常用的数据结构,同时还支持排序,查找,划分等常用的算法,此外libcstl也包含迭代器的类型,它作为容器和算法之间的桥梁。libcstl为C语言编程中的数据管理提供了便利。 为了纪检libcstl项目建立一周年特发布libcstl-2.0.0的预览版本,同时展示一下libcstl新版本的 新特性。libcstl-2.0.0预览版本不是libcstl-2.0.0的正式版本,libcstl-2.0.0的开发工作已经完 成现在正在测试,所以预览版本会不稳定会有bug,如果发现各种情况或者bug请提交给libcstl开源 项目。 Container容器可以用来排序数据,管理和存储数据,所以为了不同的目的libcstl提供了不同的容器.容器分为两 大类: 序列容器: 序列容器主要用来存储和管理数据,容器中的数据的顺序与数据插入到容器中的次序有关,而与数据本身的值无关.libcstl提供的序列容器有:vector_t, list_t, deque_t, slist_t. 关联容器: 关联容器更关系容器中数据的排列顺序,容器中数据的顺序是排序的与数据本身有关而与数据插入到容器中的次序无关.libcstl 提供的关联容器有:set_t, map_t, multiset_t, multimap_t, hash_set_t, hash_map_t,hash_multiset_t, hash_multimap_t. 序列容器 vector_t vector_t将数据保存在一个动态数组中,可以使用下标来随即的访问vector_t中的数据.添加和删除末端的数据非常快,添加和删除中间或开头的数据会很缓慢. deque_t deque_t是双短队列,它也是一个动态数组,但是可以在两端生长,所以在开头和结尾插入和删除数据都很快,但是在中间插入和删除数据很慢. list_t list_t是一个双向链表.它不具备随即访问数据的能力,如果要访问第十个元素就必须从第一个开始向后遍历,一直找到第十个元素为止,但是对于一个给定的元素找到它的前驱和后继都是非常快的.list_t的优点是在任意位置删除和插入数据都非常快. slist_t slist_t是一个单链表(stl标准中并不包含slist,但是sgi stl包含一个单链表slist).它与list_t的特点相同,对于任意位置的插入和删除数据都是非常快的.但是slist_t寻找前驱的操作效率很低,因为它必须从第一个元素开始查找. string_t string_t的行为与vector_t相似,但是它主要用来存储字符串,同时它还提供了很多关于字符串的特殊操作. 关联容器 set_t set_t容器根据它保存的数据进行自动排序,每一个数据在容器中只出现一次,重复的数据是不允许的. multiset_t multiset_t容器除了允许保存的数据重复,其他的与set_t容器相同. map_t map_t容器中保存的是数据key/value对,数据根据key值自动排序,不允许有key重复的数据.同时map_t具有关联数组的能力,使用key值可以随即访问map_t中相应的value值. multimap_t multimap_t允许有key值重复的key/value数据,并且它不具备关联数组的性质,除此之外与map_t特点相同. hash_set_t hash_set_t除了底层采用hash表实现外其他的特性与set_t相同. hash_multiset_t hash_multiset_t除了底层采用hash表实现外其他的特性与multiset_t相同. hash_map_t hash_map_t除了底层采用hash表实现外其他的特性与map_t相同. hash_multimap_t hash_multimap_t除了底层采用hash实现外其他的特性与multimap_t相同. 容器适配器 stack_t stack_t是堆栈,它采用LIFO(后进先出)的原则来管理数据. queue_t queue_t是队列,它采用FIFO(先进先出)的原则管理数据. priority_queue_t priority_queue_t是优先队列,它保存的数据具有优先级,libcstl默认的数据值越大优先级越大.每次从队列中取出的都是具有最大优先级的数据. Iterator迭代器是对容器的特定范围的数据进行遍历的类型,这个范围可能是整个容器或者是容器的一部分.迭代器表示的是容器中数据的位置的意思.迭代器的类型与容器的内部数据结构是紧密联系的.如果一个容器具有随即访问的能力(如vector_t和deque_t),那么应用于这些容器的迭代器也具有随即访问的能力.libcstl容器的迭代器一共有三种类型: forward_iterator_t 单向迭代器只能向下一个元素移动:使用iterator_next()操作,拥有这类迭代器类型的容器有slist_t,hash_set_t, hash_multiset_t, hash_map_t, hash_multimap_t. bidirectional_iterator_t 双向迭代器只有两个放行,向下一个元素:使用iterator_next()操作,向前一个元素:使用iterator_prev()操作,拥有这类迭代器类型的容器有list_t, set_t, multiset_t, map_t, multimap_t. random_access_iterator_t 随即访问迭代器具有随即访问的能力,此为还可以进行关系比较.拥有这类迭代器类型的容器vector_t和deque_t. Algorithmlibcstl为了处理元素提供了许多算法,例如查找,排序,拷贝,修改还有算术操作.算法不属于任何一种容器,它能够处理任何容器中的数据,算法都是以迭代器作为输入. Functionlibcstl函数是提供给算法使用的扩展函数,可以是算法更具扩展性,功能更强. Utilitybool_t 为了使用方便libcstl引入了一个新的类型bool_t来表示布尔值,同时定义了true, TRUE, false, FLASE. 包含任何一个libcstl头文件就可以使用bool_t了. pair_t pair_t是libcstl定义的新类型,它将两个值统一在一起.pair_t使用很广泛,在容器的很多操作中,算法中都用到了pair_t,像map_t, multimap_t, hash_map_t, hash_multimap_t这样的容器中保存的就是pair_t. [Less]

0
 
  0 reviews  |  0 users  |  349,473 lines of code  |  0 current contributors  |  Analyzed 5 days ago
 
 

Proyecto final de la asignatura desarrollo de software 2 de la universidad del valle, Cali, Colombia.

0
 
  0 reviews  |  0 users  |  0 current contributors  |  Analyzed 2 days ago
  ds2 mio sgi
 
 

Sistema de Gestion de Informacion - MIO

0
 
  0 reviews  |  0 users  |  0 current contributors
  sgi mio
 
 

Sistema de predicción de demanda & stock

0
 
  0 reviews  |  0 users  |  20,567 lines of code  |  0 current contributors  |  Analyzed 5 days ago
 
 
 
 

Creative Commons License Copyright © 2013 Black Duck Software, Inc. and its contributors, Some Rights Reserved. Unless otherwise marked, this work is licensed under a Creative Commons Attribution 3.0 Unported License . Ohloh ® and the Ohloh logo are trademarks of Black Duck Software, Inc. in the United States and/or other jurisdictions. All other trademarks are the property of their respective holders.