Thursday, May 24, 2012

What's the Difference Between 2D and 3D Anyway?

,
3D MODELLING SOFTWARE :

Isn't it obvious? Well, apparently not quite, when you consider how many people are still struggling with this topic!

The first concept you must grasp is that 3D means 3 dimensional and 2D means 2 dimensional. Now before you think I'm stating the obvious, let me go on to say that the 3D and 2D in animation refer to the dimension in which the animation was created. Ahhhh. The plot thickens eh?

For 2D animation, everything happens on a 2 dimensional platform. Pictures are flat, without depth and offer only one perspective. Objects and characters are usually drawn without the subtle soft shadows we see in real life and colours have few varying shades. In 3D animation, everything happens on a 3 dimensional platform. Pictures have depth and offer multiple perspectives just like in real life and have soft subtle shadows casted on the objects and characters within.

In 2D, characters look cartoonish and unrealisitc. In 3D, characters can look cartoonish but realistic at the same time.

Another way to think of this is to think in terms of a painting and a sculpture. 2D is a painting, and 3D is a sculpture. 3D introduces "depth perspective," so we not only see a rectangle (2D) but a CUBE (3D). You may also want to think of it like being the difference between a photograph of a glass of water (2D) and being able to reach out and actually pick up the glass of water (3D).

Typically, 2D involves "drawing," or movement on, say, a flat surface (sketch pad, etc.) or in the vertical and horizontal planes. 3D involves "modeling," i.e., creating objects in 3-dimensions using a computer software, residing in an expansive virtual environment, complete with lights, reflections, other objects, shadows, etc.

You could start training yourself by comparing a cartoon like Bugs Bunny, Aladdin, Lion King (2D) to "Toy Story 1,2 & 3, "Finding Nemo" and "Incredibles" (3D). If you have not watched any of these great cartoons, you should grab one right away or be branded a neantherdal forever!


"Now YOU Can Create Professional 3D Animations, Games And Graphic Models Like Pixar and Dreamworks In 2 Hours or Less..."

Read more

Tuesday, May 22, 2012

Database Fundamentals

,
3D MODELLING SOFTWARE :

Database Fundamentals must be prepared to all the computer professionals and users. If you lack in their actual
meaning of terms, you would always find an uneasiness and discomfort when these
jargons come to you. This article is targeted to a novice and expert both, so
that novice can prepare and an expert can revise things as well. My approach is
to mention all the things concerned with database concepts.

[1] Entity and Entity Relationships :

Entity :

An Entity is place, object or thing for which we can collect information.

Such as Student is an Entity and we can collection information like Name, Phone and Address. Here, Name, Phone and Address are the Attributes of entity 'student'.

Entity Relationship Diagram :

Also called as E-R Diagram. E-R Diagram is the graphical depiction of the entity, its attribute and relationship between entities.

[2] Data and Database :

Data :

Data are the single unit of an information.

Such as if name of an employee is 'John', then 'John' is a data. His telephone no. is
'+9109880959786', then, this is also a data. The value of the attribute of any entity can be said as data.

So, Data are the known facts that can be recorded and have their implicit meaning. e.g. name, telephone, address etc.

Data is a plural and 'Datum' is the singular form of the data.

Information :

When the set of data are collected together in a meaningful manner, an information is generated.

Such as if we take example of an employee 'John'. The Name is 'John' , Telephone no. is
'+9109880959786' , designation is 'DBA'. So, if we collectively analyze these, we get information that
'John' is an employee with telephone no. '+9109880959786' and he is designated as
'DBA'.

So, When the some set of data are collected together, information get produced.
Although, this information is not for computer, this is just for humans only.

Database :

Database is the collection of related data.

Database is logically coherent collection of data with some inherent meaning. A random assortment of data can not be said as database. Such as a Telephone Diary is also a database, but, if it is randomly stored then, it can not be said as database.
Database can be generated manually or in computerized manner. The Library catalog is also a database.

[3] Database Management System (DBMS) :

Database Management System is the collection of programs and tools that enables users to create and maintain the database.

A DBMS is also a general purpose software system that facilitates the process of defining, constructing and manipulating databases for various applications.

Characteristics of Database Management System :

(1) Self Describing

(2) Insulation from Programs and Data Abstraction

(3) Support of Multiple views to Database.

[4] Advantages of DBMS:

1- Controlling Redundancy :

There are provisions in all database models that redundant storage of the data can be avoided.

2- Security Over Unauthorized Access :

This is the feature found in the database that without proper login, no one can modify or store database. The security can not be achieved with the flat file (Sequential) approach.

3- Providing Persistent Storage for Database Objects :

Database can be used as the persistent storage of Program objects, Database and Database structures. This meant that a complex object of programming languages can be stored in the database. This gives more flexibility and compatibility of database over the programming languages.

4- Permitting Inferencing and Actions using Rules :

Inferencing is the method for defining deducing rules for inferencing new information from stored database. Such database are called as Deducible Database. In other words, there must be some methods to provide information by logical implementation on the stored database.

6- Allowing Multiple User Interface :

DBMS has the capability to provide concurrent execution of various parts of the database. In this approach, Deadlock and other anomalies are also handled by the DBMS.

5- Backup and Recovery :

Database Management Systems have proper mechanism to Backup the whole database and recover when any disaster comes to picture. There are methods for Disaster Recovery in all DBMS.

[5] Data Models :

A data model is the set of conceptual tools for describing data, their relation, semantics and consistency constraints. There are following data models-

(1) Hierarchical Model

(2) Network Model

(3) Relational Model

(4) Object Relational Model

Describing all of these would be out of context. You should know that with all these, Relational Model is famous one. Newer implementation of DBMS do follow Object Oriented Model. Such as Oracle, Sybase and SQL Server.

[6] Logical and Physical Data Independence :


Data Independence is the quality of DBMS that ensure the capability to change the database in a manner that the change in one level does not affect the other level. Such as change in the physical storage (Internal Level) does not affect the database structure (Conceptual Level).

(1) Logical Data Independence:

Capability to change the Logical structure without changing the external and internal schema of the database.

(2) Physical Data Independence:

Capability to change the Physical schema without any change in the conceptual schema of the database.

[7] Database Languages :

There are following database languages-

[1] DDL (Data Definition Language)

[2] DML (Data Manipulation Language)

[3] DCL (Data Control Language)

[1] DDL (Data Definition Language)

This is the language concerned with the creation of database structure and schema related with this. This language is concerned with the definition of the whole database architecture.
DDL is used to define and manage all the objects in an database. Such as creating Databases, creating security objects that define the whole database.

[2] DML (Data Manipulation Language)

Insertion, Update , Delete and Selection are the activities concerned with the database manipulation language.
DML is used to Select, Insert, Update, and Delete data in the objects defined using DDL.

[3] DCL ( Database Control Language)

Database control language is concerned with the consistency maintaining, authorizing access and other control over the database.

There are some other languages which must be known. These are -

VDL (View Definition Language) : Providing means to view the conceptual schema of database for external level of three level schema.

SDL (Storage Definition Language) : Providing means to change or modify the internal schema of the database.

[8] Relational Database :

The Relation database model is based upon the conception of implementing the database with the Mathematical Set Theory. In this model, data is collection of tables called Relation in the set theory. The Tabular representation of data contains rows and columns in which rows represent set of attributes of individual entity and the columns represent the attribute of entity.

A model is also said as Relational Database Model, if it follows complete set of Rules defined by Dr. E.F. Codd. There are 12 Rules of Dr. Codd. In all of them, only Oracle is supposed to follow nearly all of them. But, the best in performance is Sybase which is more easier to configure that of Oracle.

SQL :

SQL is actually Structured Query Language. This is pronunciated as 'sequel', but 'Ess-Que-El' is also correct.
It was initially named by Dr. E.F. Codd who named it Structured English Query
Language (S E Que L ) as Sequel.

SQL is based on the Relational Model. Nearly all the database implementation in the world are in Relational Model. Sybase ,SQL Server, Oracle,
DB2 are the famous implementation of Relational Model. But these are also kept in the Category of Object Relational Model.
Microsoft Access is not supposed to be relational model. This actually uses some
flavors of relational database. But, can not be taken into account of pure
Relational database.

ANSI-SQL :

American National Standards Institute handles the standards of SQL. The changes
are made time to time. We have ANSI-SQL-89, ANSI-SQL-92 and other standards.
There are several levels decided. Microsoft SQL Server is given entry level.

Conclusion :

This is all about providing protection for passwords. There are many other
things to research in the same scenario and I would like to share my ideas when
such studies are complete. Overall, my aim was to open your eyes that backups
are not only to secure your data, but due to carelessness this may lead to
leakage of information. In my opinion, disclosure of important information is
more serious matter than loss of information. So, awareness is important and
there is a little effort to apply in securing your backups.


"Now YOU Can Create Professional 3D Animations, Games And Graphic Models Like Pixar and Dreamworks In 2 Hours or Less..."

Read more

Monday, May 21, 2012

HP Pavilion All-In-One MS220z Review - Highlighting the Pros of HP's New Desktop PC

,
3D MODELLING SOFTWARE :

This HP Pavilion All-in-One MS220z review will highlight the positive aspects of this new desktop PC. Everything from its slim profile to its easy setup makes it a great choice for consumers who want a simple, yet efficient desktop computer. The large PC tower is quickly becoming obsolete these days, and it's slimline desktops such as this one that are responsible.

So, what is it about this all-in-one computer that makes it great? Well, at the starting price of 9.99, you can expect: an AMD Athlon II 250u dual core processor, 2GB DDR2-800MHz SODIMM, 320GB 7200 rpm SATA 3Gb/s hard drive, ATI Radeon HD 3200 integrated graphics, Genuine Windows 7, and other great specs, all of which can be upgraded if you want more.

A lot of people would love to have upgrades but can't afford to do so. Fortunately, there are some HP Pavilion All-in-One MS220z discount offers available online to help make the purchase more affordable. If you are interested in this desktop PC, look for some stackable coupons on the internet and use them all together to save on your purchase.

If you want a new computer to use for general web surfing and light gaming, then this is a great choice. It's not as powerful as larger gaming models, but it's still great for games such as World of Warcraft. Also, with multifaceted entertainment software, you can: create and edit videos, stream videos, watch high definition DVD's, listen to music, and more! The only downside is that there is no option for an optical Blu-ray drive.

The HP Pavilion All-in-One MS220z is an Energy Star qualified, EPEAT Silver registered system. What this means is that you will get ultimate power through less energy consumption, thereby saving money on your electric bill! You can leave the computer on without worrying so much about the amount of energy it is consuming. You will also be doing your part in helping the environment.

As for upgradable options, you can go up to 4 GB DDR2-800MHz SODIMM memory, 500 GB HP Pocket Media Drive, high definition speakers with subwoofer, Wireless-G LAN card, and multimedia keyboard and wireless mouse. You can also add an LCD monitor to your order if you wish. You can customize the PC to suit your every need, whether you want a desktop computer for general use, entertainment, or both. Overall, the HP Pavilion All-in-One MS220z is a pretty good PC, as it really does offer a whole lot of features in one, slim package!


"Now YOU Can Create Professional 3D Animations, Games And Graphic Models Like Pixar and Dreamworks In 2 Hours or Less..."

Read more

Saturday, May 19, 2012

How To Choose a Compact Digital Camera

,
3D MODELLING SOFTWARE :

Compact digital cameras are such a craze today that almost every household has one. The popularity of digitals has in fact overshadowed to near extinction the use of cameras with films. But what is it about digital cameras that make even the professional users go gaga over it?

Digital cameras may cost more than the ordinary camera but it is cost effective in the long term. Unlike ordinary cameras, digitals operate without expensive films. The photos can be stored in the user's computer, or he can save it on a disc, flash drive or have it printed to photo paper. It is said to be a good investment not only because it does capture memories, but also it allows the user to save on film expenses.

The mad rush for compact digital cameras has begun and even those who could not afford to buy one are saving for that precious digital camera. To make it a good investment, buyers of compact digital cameras should make sure they know what they are buying and that they are buying the camera that best fits their requirements.

Neophyte digital users believe that the higher the pixel of the camera, the better for them. The truth is, a digital camera's pixel is only as good as the user's requirements. It means choosing the amount of pixels depends on your needs and not just for the sake of buying a camera with high pixels.

Before considering the type of digital you need, it is practical to take note of your budget or allowance allotted for buying the camera. Digital makers come up with new models every six months that cameras that are highly priced before now can be more affordable for you later on.

Choosing a compact camera brand really depends on the preference of the user. There are brands that are highly priced because they are popular and the manufacturers have spent millions for advertisements. Good reviews will also depend on the preferences of the camera reviewers so better stick to the basic requirements of a good camera. Sometimes, buyers opt for well-known brands that have been in the camera business for a long time to make sure they are buying quality digital cameras.

Prospective buyers of digitals should be patient in reading the guide or manual because unlike the ordinary camera, digital cameras are a bit more complicated to use the first time. It gets easier though once you get the hang of it.

When choosing which camera, take note of the optical zoom and not the digital zoom because the former does the real zooming. As to the matter of mega pixels, the higher the pixels, the more expensive it gets. However, if you just need to print your photos in small sizes, you do not need the higher mega pixels. When using digital cameras with the intention of printing your photos, it is ideal to choose the highest resolution but this will also mean each shot will require more memory storage. You also have to know that digitals come with software that will allow users to adjust the sizes of the photos. However, it is always best to change a higher resolution shot to lower resolution than the reverse because it has a tendency to become pixelized and the image will become blurred.

Whatever model of digital camera you choose, make sure it is appropriate for your requirements. If you are an amateur, start with a camera that has the basic requirements and a lower mega pixel so it will be affordable for you and won't be afraid to take a bad picture because all you have to do is delete it and take another photo.


"Now YOU Can Create Professional 3D Animations, Games And Graphic Models Like Pixar and Dreamworks In 2 Hours or Less..."

Read more

Friday, May 18, 2012

3D CNC Router

,
3D MODELLING SOFTWARE :

The 3D CNC Router gives the reliability and performance of more expensive CNC machines. The Personal Robotics System (PRS) includes everything that you will need to get up and running: the tool, the table and the software. No matter what your needs are, routing, sculpting, cutting, or machining, the program that you need is available. No longer is this type of technology available only for large companies; it is now available for small businesses who like to compete at higher levels, who like to be able to offer their clientele the type of service that they deserve and to those who want to expand and incorporate new technologies into their business.

This type of technology can be incorporated into many different projects and can cut your time in half. You will be able to work faster and produce quality products that will make every customer happy. From sign making to woodworking, the 3D CNC router offers you the ability to offer 3D work that is sure to please.

Real 3D features will stand out among the rest. 2D carves do not stand out. 3D carves stand out and stand up, making them unique and very noticeable. 3D uses angles and curves to cut the path. The X, Y, and Z axes are used. Also with 3D, you will design in 3D. Even though the former 2.5D option was cutting in 3D like moves, the design process was still 2D, not 3D.

The 3D CNC Router offers more complex carving, unique features and design options. Designing and the actual tool-path creation is two different things completely and there are different software programs for each. You must learn how to separate the two.

No longer will your design process be flat drawing lines, now you will model your design. You build up the design using different 3D shapes and with the right program this actual model will reflect over onto the tool path. This means that what you were previously used to, will no longer be with the 3D CNC router.

Clip Art/Models

If you don't do enough 3D projects to justify the cost of the 3D modeling software, you do not have to worry about it. There are companies who offer 3D clip art that can be used with the 3D CNC router. If you do not use the software program enough, your proficiency level as an artist will not be high. The 3D clipart option could be the best option for you.

Purchasing 3D models via the web may not be best. Usually these models have been developed for other uses such as video, etc. They are not developed explicitly for cutting; however, you can purchase 3D models that are specifically designed for cutting and this would be the right option for you. So, when considering purchasing 3D models instead of developing your own, make sure that you purchase the right ones. The resolution quality will be better and they will allow you to change the scale of the model, if needed.


"Now YOU Can Create Professional 3D Animations, Games And Graphic Models Like Pixar and Dreamworks In 2 Hours or Less..."

Read more
 

3D MODELLING SOFTWARE Copyright © 2011 -- Template created by O Pregador -- Powered by Blogger