A website wireframe is a visual guide that represents the skeletal framework of a website. It depicts the page layout or arrangement of the website’s content, including interface elements and navigational systems, and how they work together.
Questions tagged [wireframe]
182 questions
4
votes
2 answers
Wireframe: Legend colors with multiple surfaces and transparency
The following code plots 3 colored planes using lattice's wireframe function. However, I cannot understand why the legend does not change by setting the color groups. I tried to do it manually but I only ended up changing the text color. By the way,…

Emer
- 3,734
- 2
- 33
- 47
3
votes
2 answers
Display loaded OBJ model in wireframe mode in three.js
I wanted to display my loaded .obj file in wireframe mode..
I got to know about the WireFrameGeometry But for somereason the .mtl texture only gets display .
Below is the code ..
/* Model */
var mtlLoader = new THREE.MTLLoader();
…

RedBall
- 311
- 4
- 12
3
votes
0 answers
How to add background grids in an R lattice::wireframe plot?
I loved a 3D plot I saw in this article and I am trying to reproduce it with my own data.
So far, I'm quite happy with the plot I obtain with the following code:
d <- expand.grid(x = seq(0, 20, by = 1),
y = seq(3.5, 5.5, by =…

rcirer
- 31
- 5
3
votes
1 answer
How to set a richtext box in Pencil to a custom width?
I'm creating a prototype with Pencil an open source wireframing and mocking tool. I need to add a rich text box to my prototype and fill it with some sample text. The problem is that the box automatically resizes itself to around 200px and it won't…

Nikola Stjelja
- 3,659
- 9
- 37
- 45
3
votes
2 answers
libgdx: Display wireframe of loaded model
I've been desperately searching for a solution on the internet... But I haven't gotten any further than the function glDrawArrays. I have no idea how to use it, or why it isn't working... I want to render the polygon lines (or vertex lines) of my…

Danyel
- 2,180
- 18
- 32
3
votes
1 answer
Three.js: Wireframe renderd behind ShaderMaterial
Because I needed transparency for every face on its own I switched from MeshBasicMaterial to ShaderMaterial.
I draw my geometry twice:
First my filled trianges
and then a wireframe to get a border for every triangle.
Is there a better way to…

endofsource
- 354
- 5
- 18
3
votes
1 answer
Python matplotlib wireframe distortion
I am trying to create a plot composed of multiple wireframe spheres using matplotlib. I found a code fragment to plot one such sphere here so I thought it would be easy to extend it to multiple spheres by just calling plot_wireframe multiple times.…

Giovanni Botta
- 9,626
- 5
- 51
- 94
2
votes
1 answer
drawing clipping plane and wireframe simultaneously in android
I am trying to clip a 3D model . It works fine with shaded mode but the application crashes when it is in wireframe mode in some devices only. Is there any issue using glClipPlanef and GL_LINES?
I am using glDrawElements(GL10.GL_LINES,…

Anoop AR.
- 118
- 1
- 12
2
votes
5 answers
C/D line drawing package
I find my self in need of a line drawing package. I need to pop a window and draw lines and points. Text would be nice but I can live without it. Most importantly, I need something that is dirt simple to get running. I don't have time to dink around…

BCS
- 75,627
- 68
- 187
- 294
2
votes
0 answers
Zoom on scroll interaction in figma
I want to build a figma prototype that will allow users to zoom in and out from one photo to another using scrolling/pinch on trackpad.
I can also make a huge photo to zoom in and out of it.
The idea is to make an interface in which zooming in and…

35 Aryan Patil
- 21
- 1
2
votes
1 answer
How do I add wireframes to instanced meshes in Three.js
I am implementing a custom cityscape scene in Three.js. I need to render a lot of the same geometries and to increase speed I have implemented InstanceMesh.
For normal meshes, I have used this code to add wireframes to all meshes:
// material is…

garma
- 213
- 1
- 3
- 12
2
votes
0 answers
How to create user flow diagrams with BPMN?
Wireframes are a kind of blueprints when designing frontends. I recently came across an extension to that called "user flows" or "UI flows", which visualizes parts of the interactivity of the user interface (UI) as a flow chart. They look nice but…

B--rian
- 5,578
- 10
- 38
- 89
2
votes
1 answer
WireFrame of Json formated geometry in Three.js
I would like to display the wireframe of a parallelepiped defined by vertexes in a Json format using the following Three.js code
var testCube ={
"metadata":{
"version":json['version'],
…

Sim81
- 1,574
- 2
- 9
- 15
2
votes
1 answer
JavaScript - Gap between triangles when wire-frame is removed
I'm relatively new to JavaScript and to get a grip on it I've been working on a 3D engine and I stumbled on something odd.
When I render a filled mesh with wire-frame disabled, a gap shows up between my triangles.
Here's an example:
//…
user4618860
2
votes
1 answer
R lattice wireframe color scale similar across plots
Is there a way to change the drape color scale in lattice: wireplot? I have a series of plots and would like to adjust the colors so they each show the same color scale. I am able to change the z axis scale, but that only makes it so the surface…

Valerie S
- 917
- 2
- 7
- 17