Click here to Skip to main content
15,914,397 members
Home / Discussions / Design and Architecture
   

Design and Architecture

 
AnswerRe: Thin Client Compiler ? Pin
jschell19-Jun-12 13:21
jschell19-Jun-12 13:21 
GeneralRe: Thin Client Compiler ? Pin
W Balboos, GHB20-Jun-12 1:46
W Balboos, GHB20-Jun-12 1:46 
AnswerRe: Thin Client Compiler ? Pin
Bernhard Hiller19-Jun-12 20:41
Bernhard Hiller19-Jun-12 20:41 
GeneralRe: Thin Client Compiler ? Pin
W Balboos, GHB20-Jun-12 1:58
W Balboos, GHB20-Jun-12 1:58 
Questionprobleme schema object rational rose Pin
ahmadiss16-Jun-12 5:53
ahmadiss16-Jun-12 5:53 
QuestionWhat's The Right Way To Do This? Pin
Kevin Marois15-Jun-12 7:26
professionalKevin Marois15-Jun-12 7:26 
AnswerRe: What's The Right Way To Do This? Pin
Pete O'Hanlon15-Jun-12 7:58
mvePete O'Hanlon15-Jun-12 7:58 
GeneralRe: What's The Right Way To Do This? Pin
Kevin Marois15-Jun-12 8:00
professionalKevin Marois15-Jun-12 8:00 
GeneralRe: What's The Right Way To Do This? Pin
Eddy Vluggen17-Jun-12 8:36
professionalEddy Vluggen17-Jun-12 8:36 
GeneralRe: What's The Right Way To Do This? Pin
jschell17-Jun-12 13:08
jschell17-Jun-12 13:08 
AnswerRe: What's The Right Way To Do This? Pin
Eddy Vluggen17-Jun-12 8:34
professionalEddy Vluggen17-Jun-12 8:34 
AnswerRe: What's The Right Way To Do This? Pin
Luc Pattyn17-Jun-12 9:21
sitebuilderLuc Pattyn17-Jun-12 9:21 
AnswerRe: What's The Right Way To Do This? Pin
Mycroft Holmes17-Jun-12 14:41
professionalMycroft Holmes17-Jun-12 14:41 
GeneralRe: What's The Right Way To Do This? Pin
Kevin Marois22-Jun-12 10:56
professionalKevin Marois22-Jun-12 10:56 
GeneralRe: What's The Right Way To Do This? Pin
Mycroft Holmes22-Jun-12 13:10
professionalMycroft Holmes22-Jun-12 13:10 
GeneralRe: What's The Right Way To Do This? Pin
Kevin Marois22-Jun-12 14:01
professionalKevin Marois22-Jun-12 14:01 
Questioncolor mixing riddle Pin
Kobi_Z13-Jun-12 21:52
Kobi_Z13-Jun-12 21:52 
hi, my question is
if i have 3 basic colors (each made of rgb):
color1 : R:150, B:zero, G:255
color2 : R:255, B:150, G:zero
color3 : R:zero, B:255, G:150

each of them can be mixed using the formula :
new_color = floor(X*0.9)+floor(Y*0.1)
X and Y can be abasic color or a new color allready created by using the formula.

for example, if i want to mix color1 as main with color3 :
new_color(R,B,G) = (floor(0.9*150)+floor(0.1*0) , floor(0.9*0)+floor(0.1*255) , floor(0.9*255)+floor(0.1*150) ) = (135, 25, 244).

<b>I need to find a way to mix the colors in order to get a desired color, for example : R:187 B:135 G:201.</b>
so far i wrote a "brute force" program which go all over the combinations of basic colors (runing for 7 days now...)

hope there is a smarter way to solve the problem.
Thanks.
AnswerRe: color mixing riddle Pin
Bernhard Hiller13-Jun-12 22:18
Bernhard Hiller13-Jun-12 22:18 
GeneralRe: color mixing riddle Pin
Kobi_Z14-Jun-12 4:52
Kobi_Z14-Jun-12 4:52 
GeneralRe: color mixing riddle Pin
Philippe Mori17-Jun-12 2:50
Philippe Mori17-Jun-12 2:50 
AnswerRe: color mixing riddle Pin
Richard MacCutchan14-Jun-12 5:19
mveRichard MacCutchan14-Jun-12 5:19 
GeneralRe: color mixing riddle Pin
Kobi_Z14-Jun-12 7:16
Kobi_Z14-Jun-12 7:16 
GeneralRe: color mixing riddle Pin
Richard MacCutchan14-Jun-12 7:30
mveRichard MacCutchan14-Jun-12 7:30 
GeneralRe: color mixing riddle Pin
Kobi_Z14-Jun-12 8:07
Kobi_Z14-Jun-12 8:07 
GeneralRe: color mixing riddle Pin
Richard MacCutchan14-Jun-12 21:40
mveRichard MacCutchan14-Jun-12 21:40 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.