Cinder上的低不透明度背景/填充会导致屏幕闪烁红色

时间:2018-05-15 20:15:47

标签: opengl cinder

当我尝试在Cinder中为我的内容绘制低不透明度背景时,我的屏幕在开始时以红色闪烁,然后在绘制内容时保持闪烁。

我正在尝试复制我在Processing / p5.js中使用的效果,其中背景并非完全不透明,因此对象似乎正在移动“褪色”:

awk 'NR==FNR{a=a " " $0;next} ! match(a,"\\<"$0"\\>")' targetfile liststrings

我研究过这可能是一个OpenGL问题,但我是初学者C ++ / Cinder / OpenGL用户,所以我不知道该如何继续。

1 个答案:

答案 0 :(得分:0)

最后,我设法使用以下方法解决了我的问题:

ap_topics <- tidy(ap_lda, matrix = "beta")
ap_lda <- LDA(dtm.new, k = 15, control = list(alpha=0.1,seed=1234))
ap_topics <- tidy(ap_lda, matrix = "beta")

ap_top_terms <- ap_topics %>%
  group_by(topic) %>%
  top_n(15, beta) %>%
  ungroup() %>%
  arrange(topic, -beta)

ap_top_terms %>%
  mutate(term = reorder(term, beta)) %>%
  ggplot(aes(term,beta, fill = factor(topic))) +
  geom_col(show.legend = FALSE) +
  facet_wrap(~ topic, scales = "free") +
  coord_flip()