Tagged Questions

1
vote
5answers
152 views

Circular Buffer in Flash

I need to store items of varying length in a circular queue in a flash chip. Each item will have its encapsulation so I can figure out how big it is and where the next item begins …
0
votes
2answers
48 views

Getting JSON from Jersey with circular dependencies

Hi I am writing a service that uses Jersey and JAXB. My classes are annotated with @XMLRootElement, @XMLElement, etc. I have a circular dependency between two classes, so I have a …
0
votes
5answers
99 views

C++ class, its base class and circular include includes

FILE #1 (foo.h): #ifndef FOO_H_ #define FOO_H_ #include "baseclass.h" #include "bar.h" class Bar; class Foo : public baseclass { public: bar *varBar; }; #endif FILE #2 (bar.h): …
2
votes
5answers
126 views

Circular buffer in JavaScript

I was wondering whether anyone has already implemented a circular buffer in JavaScript? How would you do that without having pointers?
3
votes
2answers
213 views

Circular Dependencies in Ruby

Let's say we have two classes, Foo and Foo Sub, each in a different file, foo.rb and foo_sub.rb respectively. foo.rb: require "foo_sub" class Foo def foo FooSub.SOME_ …
0
votes
3answers
155 views

iphone UIImageView rotation

hi, Can anyone tell me how to rotate an image in circular motion
2
votes
2answers
51 views

linkedlist which links to itself?

Hi All, Is there a name for a linked list type structure where the head and tail nodes link to each other? In such a list you can obviously iterate through it forever as it double …
3
votes
7answers
889 views

circular dependencies between dlls with visual studio

I have a circular dependency between two functions. I would like each of these functions to reside in its own dll. Is it possible to build this with visual studio? foo(int i) { …
5
votes
6answers
300 views

Circular C++ Header Includes

In a project I have 2 classes: // mainw.h #include "IFr.h" ... class mainw { public: static IFr ifr; static CSize=100; ... }; // IFr.h #include "mainw.h" ... class IFr { publi …
1
vote
1answer
117 views

Python: How to get rid of circular dependency involving decorator?

I had got a following case of circular import (here severly simplified): array2image.py conversion module: import tuti @tuti.log_exec_time # can't do that, evaluated at definiti …
2
votes
2answers
110 views

removing a circular DB relationship

Hi, How can I get rid of a circular relationship in my db structure. I have an entity called Item. An item can have a sub item/s (circular relationship). An item can have more th …
0
votes
0answers
254 views

Circular Scroll View

Hi all, I have implemented a circular scroll view. It's working fine , but after sometimes the scroll view delegates are not getting called. I have attached the code , what is t …
4
votes
2answers
171 views

Circular Match

I have a database with three tables: userid_tbl, need_tbl, have_tbl create table userid_tbl (user_id varchar2(15) not null primary key); create table need_tbl (user_id varchar2( …
0
votes
3answers
620 views

OpenGL rotate around a spot

Hi, I'm wanting to rotate a gluSphere around a fixed point in a circular motion, like a planet going around the sun. Would it be best to use glRotatef or glTranslate? Cheers!
2
votes
2answers
264 views

Best way to draw icons on a pie (or circular) menu?

I am trying to figure out an algorithm to calculate where to place any number of icons for a circular menu on a device with a screen that is 240x320. The icons are 48x48 but can be …