Rendering is the process of generating an image from a model (or models in what collectively could be called a scene file), by means of computer programs.

learn more… | top users | synonyms

0
votes
0answers
2 views

White box around part of image in Blender

I've been trying to render my animation in Blender, and while it is rendering, it looks great, but as soon as it is finished, it places a semi-opaque white frame around my image. Example: How can ...
0
votes
2answers
23 views

Backbone toJSON not rendering

when I use Backbone toJSON method of the model like this: this.$el.html(this.model.toJSON()); It doesn't render model into view root element ( more than one attribute ). But when I get one ...
0
votes
0answers
14 views

Date range selector on highstock is separate container?

Is this possible to split data range selector and chart on highstock? In other words is this possible to render chart to different container than date range selector?
0
votes
0answers
7 views

Richfaces, render components on checkbox does not update select or picklist

I've implemented a checkbox like the following: JSF-command-button-enable-disable-based-on-jsf-check-box answer of Hanynowsky. It works fine for inputtext, autocomplete and buttoncomponents. ...
0
votes
1answer
19 views

iOS: rendering a subview at the proper resolution

I have a view which has a few subviews. I am using transforms to scale the view 400%, which works perfectly, but I am not sure how to scale the "drawing" of the sub-views. So when I render the scaled ...
0
votes
1answer
24 views

Scaling graphics causes game to stop rendering

I'm making a (currently rather simple) top-down 2D game in Java, and am having trouble implementing zooming. It seems the only way I can scale is by reducing my width and height, and feeding a ...
0
votes
0answers
7 views

How can i still render checkboxes in my jTable while using DbUtils to get the data from a database

I need help to find a way that my jTable will still render a checkbox, currently a true or false is given in the table. i would like to make a program that shows the user names in a database and a ...
3
votes
0answers
30 views

Adding textfield to Graphics in java

Does anyone know how to add JTextField into Graphics name bufferstrategy.getDrawGraphics? Tryed to pain it into graphics, something like this: private JTextField Input = new JTextField(); ...
0
votes
1answer
17 views

Call result controller/view in anoter view

I try to call controller/view in another view. I have a homepage Default:index using a block view of my controller Event and I want to put this block.html.twig in my folder of my controller. In my ...
0
votes
0answers
10 views

Render the content of a List<OfSomeType>

I'm faced with the following problem of rendering the content of a List. I have public class Report { public struct Results { public string meth { get; set; } public TimeSpan ...
1
vote
1answer
33 views

How can I get a ruby on rails select dropdown to automatically contain the proper information?

I have an object called a device that is associated with a customer. Once the customer orders a device, then the factory assigns the device to the customer, and the customer registers the device, and ...
0
votes
0answers
19 views

three.js The more objects inserted into the scene render it speeds up

I use the three.js example of the control MD2 object. I wrote a simple collision but I have one problem. The more objects inserted into the scene render it speeds up. Contradictory! You can see ...
0
votes
0answers
11 views

Symfony 2.2.1 The ip address in request gets changed in Embedding Controllers

Symfony 2.2.1 The ip address in request gets changed in Embedding Controllers. am in missing something. or is there any way to persist the clients ip address in the sub request. I am useing it in ...
0
votes
0answers
31 views

Handling streams while Batch Printing RDLC reports from a console application

I am printing reports from a console application. I started off using the manner prescribed by Microsoft ( http://msdn.microsoft.com/en-us/library/ms252172(v=vs.100).aspx). In this technique, one ...
0
votes
0answers
19 views

Map Images into video and render it with the mapped images

I want to know how this foresthero is working: http://foresthero.org/ I know that these are dynamically rendered which takes sometime to create video and then giving users a link where they can view ...
-1
votes
1answer
25 views

Facebook login page renders improperly when zoomed in Firefox

I have reported this to Mozilla in a bug report: https://bugzilla.mozilla.org/show_bug.cgi?id=843767 They said that this is a Facebook problem. Here is what the log in page looks like on 130% zoom: ...
0
votes
0answers
20 views

BackboneJS: Render view after model validation

I was wondering what is the best approach for rendering my view using BackboneJS after a form validation. I have a form in my view, and everytime something change in my form, I'm updating my model, ...
1
vote
0answers
18 views

LWJGL 3D Rendering not working

I have set up here a main class which renders the blocks from an ArrayList however I only see the last one to be rendered. Why do I only see the last block in the ArrayList? This is where I render ...
0
votes
0answers
9 views

Raphel.transform svg save as image

I`m using Raphel.transform in this example http://geoapps.ge/raphel/ and after fit glasses i want to save as image. I use html2canvas but it does not render glasses. Any ideas? Thanks in advance!
0
votes
2answers
38 views

Django render doesn`t give a view

I`ve got in urls.py redirecting to as_view() method of ClassView after pressing "Search" button There is an if such as: def as_view(): if request.method == 'POST': //sth elif ...
0
votes
1answer
40 views

Render haml with locals and partials within partials to html file

I need to create some html files and want to use my partials already done to the show view. I used to do this with markaby, but now i think that with haml the thing will be easier. I'm trying to do: ...
0
votes
3answers
43 views

Cannot render blob as image in grails 2.1

I'm trying to render an uploaded image from a gsp without success. I have this to render the image.. What is wrong? //domain-class class Something { ... byte[] image } //controller def ...
2
votes
1answer
66 views

Node.js - Can't Get .CSS To Apply To My .HTML Locally

I have been trying to fix this for over 4 hours now, and I have read through all of the related questions/answers here on StackOverflow, as well as other websites. Right now I have a router and server ...
0
votes
0answers
32 views

Drawing textured Quad using LWJGL

I'm trying to draw a textured quad with LWJGL, but I don't know why my quad renders with only one pixel of color. This is the first time that i use LWJGL to create a 2D Fullscreen game. Here's the ...
0
votes
0answers
25 views

Easiest way to render wikitext

Is there some easiest way to render wikitext to html file(python or C++ best)? Can I use a part of moinmoin wiki engine or mediawiki html-dump? If so, how to use it? I have try wikicreole, but it ...
0
votes
2answers
61 views

C# (XNA Game Studio) Getting offscreen objects to not render

I am currently developing a game for windows phone 7. The map for my game consists of a 2 dimensional array that holds a voxel in each element. The code for the rendering of the map is as follows. ...
0
votes
2answers
38 views

Render page rails, modal

I am currently trying to optimize rendering a page in ruby on rails. I have a question, is there a way to make a page, only render another page when a link (href) associated to it is clicked. some ...
0
votes
4answers
21 views

How Do I pass parameters with a render call?

This is a simple question. If a form isn't filled out correctly, I call render 'new' in my create action so the person can fill out the form correctly. Unfortunately, this causes the loss of the ...
0
votes
0answers
42 views

Tweaking from :var to @var - makes problems and solves problems

Could really do with some help on the below issue. My post content form is not working. I have laid out all the relevant code below. Tweaking from @video_post to :video_post, breaks the form as the ...
0
votes
1answer
40 views

Rails rendering partials - Keep getting undefined method nil:NilClass

I'm new to programming and I'm working my way through rails. I'm trying to build small application but I'm quite stumbled by this problem. I've been adapting the Michael Hartl tutorial to build the ...
0
votes
2answers
63 views

Rails: Render a View (not a partial) From Within a View

I have a controller that responds to both html and js. The html view renders the whole page (including the header and footer), while the js only replaces #main. Aside from the header and footer, both ...
0
votes
1answer
16 views

Rails: Calling Render From Within a Generator

I've just started experimenting with generators. In one of my generated view templates, I want to call render like so: index.js.slim transition("#main", "<%= escape_javascript(render 'index') ...
1
vote
1answer
88 views

Is there an HTML5 method for displaying a tiff image data already loaded into memory

I have a tiff image stored in memory (in a javascript variable). What is the javascript or html technique for displaying this image in the browser window? Is there a "drawimage" type of function?
1
vote
1answer
28 views

Getting html from asp.net 4.0 web forms without executing the page?

I using a pdf component to convert html page to pdf. The issue is when I access the page by url, I am having authorization issues. In mvc, I can strip the html from view without needing access it by ...
2
votes
1answer
99 views

Twig render vs include - When and where to use one or the other?

I've read Twig: render vs include but it isn't what I'm looking for. I am not sure where and when should i use render, and when should i use include, as the behavior of these expressions seems very ...
0
votes
3answers
53 views

Can't draw rect in python pygame

I'm just getting started with PyGame. Here, I'm trying to draw a rectangle, but it's not rendering. Here's the whole program. import pygame from pygame.locals import * import sys import random ...
1
vote
0answers
60 views

C# DirectShow RenderStream No Audio

I am using DirectShow.NET, and I need to write a vide player that displays custom subtitles. My code is based on a sample's Capture.cs, and here is the relevant part: private void SetupGraph(string ...
0
votes
1answer
26 views

How to render Backbone el correctly into the view page

I'm trying to working correctly with my first Backbone app and trying to render it into my page. I've wrote this app but I didn't got how I shoud put the app html rendered in the html view: ...
0
votes
1answer
43 views

How to save Canvas-Control at specific position (in a viewbox) to a png in c# wpf?

I want to develope a .NET application with WPF. In the end there should be a Viewbox or something similar, this Viewbox should contain a canvas and in this canvas there could be various things like ...
0
votes
0answers
21 views

turn off antialiasing for certain views, cocoa touch, renderInContext:UIGraphicsGetCurrentContext

Getting unwanted artifacts between adjoining views, presumably from anti aliasing. Is there a way to turn off antialiasing on certain views while rendering images in iOS [[view layer] ...
0
votes
0answers
23 views

Dojo Tabs - Ajax data mapping

I'm adding tabs to a container Programmatically the following way: 1. make ajax call to get data 2. open tab where ajax data will be mapped var tabContainer = dijit.byId("dojoTabContainer"); var ...
0
votes
1answer
40 views

Rendering multiple spirtes from an array in AS3

I have no idea why this for loop is only showing the last sprite in my array. I'm somewhat new to AS3 and wondering why it is doing this: private function loadComplete(event:Event):void { var ...
0
votes
1answer
80 views

Rendering Error with OpenGL

Im using glut and such for an assignment at the moment and im importing all verts from a obj file from 3ds max I am using a cube at the moment but it renders all weird its hard to explain but its not ...
0
votes
0answers
21 views

Grid Editor Renderer

The problem I am facing is with a grid which allows RowEditing. The data in my grid comes from a DataBase and I render the data according to the needs, like changing the date to d.m.y format because ...
0
votes
0answers
47 views

Map editor - Help rendering hidden tiles

I am making a map editor for a game in AS3. I am tying to render a 30 x 20 tile grid(600,400px). I can render such tiles however, When the player presses up etc.. I want the tiles on screen to move ...
-1
votes
0answers
30 views

Wicket Exporttoolbar for CSV is not rendered

this is my first webproject with Wicket and I have a problem. I have a table in my application, which is empty at the first call of the page. This table will be reloaded by an AjaxFallbackButton. This ...
0
votes
1answer
33 views

Rails partial works when invoked at the end of a page, not in the middle

I have the following code section: <%= link_to 'Edit', edit_computer_path(@computer) %> | <%= link_to 'Back', computers_path %> <div> <h2>New config</h2> <%= ...
0
votes
0answers
32 views

Jquery Mapster stroke on mouse over

I am using this settings to render different areas of map with different color. http://jsfiddle.net/6maJw/ Problem is, that I also need stroke on mouseover, but when I will use stroke: true, stroke ...
0
votes
2answers
62 views

rails render form after error in other controller

I have two models in the following releationship: Client has_many products, and Product belong_to client. In the client show view I present a form to create new products, that automatically belong to ...
1
vote
2answers
50 views

Drawn Image In OpenGL Comes Out Wrong Size And With Black Boxes In It

Im currently trying to work on my Java project which includes LWJGL. I have come so far with my "game" that im now drawing an image to the screen. The problem im getting is that the drawn image gets ...

1 2 3 4 5 25