I have a confusion recently about the visualization of data with four dimension,like as {x,y,z,color}. This is my current solution.
data = Uncompress[FromCharacterCode[Flatten[ImageData[Import["https://i.stack.imgur.com/s1ZKU.png"],"Byte"]]]];
front = data[[All, 1 ;; 3]];
back = data[[All, 4]];
Graphics3D[Point[front, VertexColors -> Hue /@ Rescale[back]]]
the effect like the picture.

it is not my intention.i want get a cube whose color be determined by the fourth element of the list.
I have an another try like this.
Style[ConvexHullMesh[front]]

the shape is contented to me.But I cannot render it by what I want to.Can anybody help me?

