Tagged Questions
The bsp tag has no wiki summary.
3
votes
3answers
89 views
ABAP: Howto Write text to a local file
Im trying to write text to a local file using the following code:
data: fname(60), text type string value 'la la la'.
fname = 'myfile.txt'.
OPEN DATASET fname FOR OUTPUT IN TEXT MODE encoding ...
3
votes
1answer
62 views
Need help organizing difference in types for BSP geometry rendering
I am currently trying to convert another format to the Quake 3 BSP format. The Quake format includes verticies, faces, indicies, and textures.
From the information I have to work with:
I have ...
3
votes
1answer
212 views
ABAP: Cut off text exceeding a certain length
I have a list with texts with lengths ranging from 1 character to several thousands. I want to cut off all texts exceeding 255 characters. How can I do that?
Do I have to check the length of each ...
2
votes
2answers
423 views
How do I test if a given BSP tree is optimal?
I have a polygon soup of triangles that I would like to construct a BSP tree for. My current program simply constructs a BSP tree by inserting a random triangle from the model one at a time until all ...
1
vote
1answer
126 views
Rendering from a prebuilt BSP tree?
Hey guys. I am loading into memory a prebuilt BSP tree and I am very confused. It is being used in a first person exploring program. How does you recommend I use a BSP tree that is already made. I ...
1
vote
1answer
797 views
Simple example of BSP dungeon generation
I was originally trying to follow this algorithm to create a little simple roguelike dungeon in C#. But I guess I'm just too stupid, because my result always came out a jumbled mess of crap.
I then ...
1
vote
0answers
29 views
The tag size is not the same on all processors
ABORT(pid 1):{bsp_set_tagsize} line 136 of "BSP.cpp"
The tag size is not the same on all processors
what that mean?
bsp_begin(bsp_nprocs());
...
...
1
vote
0answers
57 views
BSP compiling at windows
i am new here, and in some way, i am newbie in computer world,
and sorry for my bad English.
we have an a task in our university,i study computer science,
we need to write a code in BSP:
Bulk ...
1
vote
1answer
4k views
Sample Android BSP(Source) for ARM
I am looking for a ARM processor version of Android BSP to port it for one of my experimental boards.
Where can I download this? Any help in this is greatly appreciated.
Thomas
0
votes
1answer
24 views
Practical Examples of BSP based polygon triangulation
Anyone can point to a resource with code example on generating triangles out of polygonal shape using BSP trees approach ?
Thanks.
0
votes
1answer
59 views
How to traverse a BSP tree back to front
Hi I am writing a Quake level renderer. I am getting to the point where I need to take transparency into account. I know a binary space partitioner (BSP) tree is formatted in a way that the data is ...
0
votes
0answers
25 views
dojo.io.script request to BSP controller from IE not maintaining stateful session
I am using Dojo to make an cross-domain dojo.io.script request to a BSP controller. (The wep app is hosted on my local machine, while the SAP server is elsewhere on the network).
When making the call ...
0
votes
1answer
58 views
Generating BSP tree from raw data
I know how to utilize a prebuilt BSP tree with old 3d levels like Quake and so and have even written a level renderer. Now, I am moving onto the next step which is actually building that BSP tree ...
0
votes
1answer
44 views
Convert Vertices and Indexes to Model
Is there any way to turn a set of vertices with indexes into a Model, as in one that is actually stored inside of a Model object?
I ask because I have implemented a BSP loader for a project that I'm ...
0
votes
0answers
42 views
Abut SVM Stochastic Gradient Descent (SGD) on Pregel-like BSP model
May I ask whether anyone else have also look into the SGD mapping on BSP model? I'm investigating whether BSP model is a good candidate for implementing distributed version of SVM SGD.
Thanks!
Joe
0
votes
0answers
67 views
Is this a BSP tree? Am I missing something?
I've been practicing at BSP trees, as I hear they are a good start to create procedural spaces such as houses.
For ease-of-deployment purposes I've tested this code in Lua, and seems to work, however ...
0
votes
0answers
43 views
Non-fixed size quadtree possible?
I'd like to create a solution for organizing my entities in world space for simple and fast culling, especially for static geometry.
I've read about the classical solution, the quadtree, which seems ...
0
votes
1answer
163 views
3D BSP tree links?
The internet is filled with information on BSP trees in 2 dimensions (i.e. raycasting, all walls are parallel). Does anyone have any links or know of a book that discusses BSP trees in 3 dimensions?
0
votes
1answer
231 views
Constructing a KD-Tree from a cube-based world
This question should be pretty easy to answer and I have a feeling there's probably a lot of documentation on the subject but I couldn't find anything in my searches so I presume I'm searching for the ...
0
votes
3answers
212 views
weirdest bug ever - int definition causes sigsegv. stack overflow?
I'm using the BSPlib and when adding a simple definition of "int i" on the function running on multiple threads (along with many other) I get a message like "Process 2 caught SIGNAL 11 Segmantation ...
0
votes
1answer
189 views
how do i include BSP library in a c++ program?
im trying to compile c++ parellel program using BSPlib , on a platfrom that has bsp compile ( bsp++). Nevertheless , it doesnt seem to recognize any of the bsp functions.
what should i do in order to ...