gpt4 book ai didi

java - 获取 float[] 作为 FloatBuffer 类

转载 作者:行者123 更新时间:2023-12-01 23:34:27 24 4
gpt4 key购买 nike

拥有 float[]我想把它作为 glLoadMatrixf(FloatBuffer m) 的参数(GLMatrixFunc的接口(interface))。

我怎样才能得到float[]FloatBuffer

代码是 -

float[] currentMatrix = {.....} ;
gl.glLoadMatrixd(currentMatrix );

以上提示-The method glLoadMatrixf(FloatBuffer) in the type GL is not applicable for the arguments (float[])

最佳答案

float[] floatArray = ...;
FloatBuffer floatBuffer = FloatBuffer.wrap(floatArray);

关于java - 获取 float[] 作为 FloatBuffer 类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18918274/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com